How to set the cursor on the LCD using a variable?

int set;
char ch;

void loop() {
  delay(5000);
   /////////////////////////String 1 length//////////////////////////////////
   if( Serial.available() ) {
   ch = Serial.read();
   set = ch;
   lcd.setCursor('set', 0);
   }