Code:
knots var word 'xx.x knots is going to have to become xxx knots for this math
kmph var word
temp var word

temp = knots * 1852            'first part of div32 function
kmph = div32 1000              'this result should be printed out with one decimal
                               'in other words result xxx should be printed as xx.x km/h
How can I get xx.x into xxx as there is an "." in the middle and also the datasheet says about only one digit before decimal -Which I wonder WHY? as speed will become two digits once it goes above 9 knots. How do I use the SKIP in a problem like this where decimal will change place?