Hi,
The typical way of doing this is to have your number scaled 10 or 100 or 1000 times (or whatever) so that a value in myVAR of 12345 corresponds to 123.45 (for example). Then, to put that on the LCD, you can do something like
Code:
LCDOUT $FE, 1, "My value= ", DEC myVAR/100, ".", DEC2 myVAR//100   ' Clear screen and print result with two decimal places.
The myVAR/100 will divide the value by 100 and print the result, which in this case will be 123.
The myVAR//100 will again divide the value by 100 but then it'll take the remainder of that division, in this case 45, and print that.
The DEC2 specifies that the number should always be printed with two digits.

/Henrik.