Get LCD cursor position

Are you using any library? Usually they have a function to place the cursor where you want it.

As an example, the LiquidCrystal Library uses something like this:

lcd.setCursor(0, 1);

:wink: