converting seperate word variables into one workable variable
ilya
Posts: 13
I am using a GPS unit to obtain position data. The data comes from the unit as two word variables, degrees and minutes. I need to combine these two variables into one variable. For example, if degrees=42 and minutes=4103 i need one variable, say position, to be 42.4103. Every time I try to divide minutes by 1000 to add it to degrees the minutes variable becomes 0000 because I assume that word variables cannot have decimals.
Comments