I need a decimal point in my LCD Display

Bill,

Your first example is perfect...

I am sorry but the display in this picture is bright, but you can see that the MPH number now says 3.3 instead of 33.

// Now MPH
  lcd.setCursor(14, 0); //(column, row)
  lcd.print("   ");
  lcd.setCursor(14, 0); //(column, row)
  if ((Nemo[Speedo]) < 100) {
    lcd.print(" ");
    if ((Nemo[Speedo]) < 10) {
      lcd.print(" ");
    }
  }
  
  lcd.print((Nemo[Speedo]) / 10.0, 1);

Thanks again for your help.

I work in the movie business and you deserve a main title credit for your assistance on this project.

Greg