Hello,
Is it possible to round and then truncate a number and then remove all of the zero's?
PRINT ROUND(12.3456789, 4, 0)
12.3500000
PRINT ROUND(12.3456789, 4, 1)
12.3400000
The result I'm after is 12.35 (without the zeros).
Thanks for any help in advance.
-Marisa