05-19-2009 04:54 PM
I couldn't find any function to convert/coerce number with more than 2 decimal points to a number with single decimal point. Is there any?
05-19-2009 04:57 PM
05-19-2009 05:36 PM
Sorry for the confusion...I admit it shouldn't be 'integer'.
This is what I want.
If the input is 14.98 the output should be 15.0 but if input is 14.94 the output should be 14.90
I hope this makes it clear....
05-19-2009 05:53 PM
05-19-2009 05:55 PM
Oh, you're looking for the number of decimal places. OK. Is this just for display purposes? If so, you can just set the Format & Precision for the numeric control to %.1f as follows:
05-19-2009 05:56 PM
Thanks...