Hi All,
Ho can I get text value from decimal value with decimal .00 or .50
I using DecimalToText function with given parameter decimal is 10000.00 and 10000.50 but in screen showing like this
I want showing text like this
Thanks,
Kane
Hi,
use the function FormatDecimal in your expression. E.g.. FormatDecimal(10000.5,2,".",",") will give you 10,000.50.
First parameter is the value, then comes the number of digits, the decimal separator and the group separator.
Best
Stefan
Hii,
that's my wish, Thanks