CR8.5
I have a string value, say 12345.23. I just want to see 12345, no decimal and digits after it. I use ToNumber function to first convert it to Number and then I have tried using
Round(12345.23,0),
Truncate(12345.23,2) and
Int(12345.23)
functions, but what I get is 12345.00. Why is it happening? Why it is still giving me decimal and two zeros?
Any idea ? thanks
I have a string value, say 12345.23. I just want to see 12345, no decimal and digits after it. I use ToNumber function to first convert it to Number and then I have tried using
Round(12345.23,0),
Truncate(12345.23,2) and
Int(12345.23)
functions, but what I get is 12345.00. Why is it happening? Why it is still giving me decimal and two zeros?
Any idea ? thanks