Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I will be glad to get some help.
How can I convert the number to format of xxxxxx.xx (2 digits after the point) ?
I got long scientifc numbers with E sign and I want to convert the field to the format which descibed above.
Thanks in advance,
Nimrod
Use the function num( X , '0.00')
or maybe
num( X, '#,##0.##')
to make it even more readable. [Where X is your field name]
Thanks.