Mar 4, 2001 1 #1 pinoak MIS Mar 4, 2001 1 US Example: The number 18.0 will lose the decimal point when the value is returned. How do I stop this?
Mar 5, 2001 #2 link9 Programmer Nov 28, 2000 3,387 US Not sure exactly what you mean, but if you use the Code: round function, then you can get the .0 to show if that's what you want. You could do this: Code: round(18.0, 1) the 1 being the number of decimal places you want to show in the output... Hope it Helps! Paul Prewett Upvote 0 Downvote
Not sure exactly what you mean, but if you use the Code: round function, then you can get the .0 to show if that's what you want. You could do this: Code: round(18.0, 1) the 1 being the number of decimal places you want to show in the output... Hope it Helps! Paul Prewett