Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In my load statement i have the following set statement for money :
SET MoneyFormat='#.##0,00;-#.##0,00';
This works good, but now i have a text box with a formula for example:
=money(sum(48/49)) The result of this formula i want in 5 decimals. How can i do that ?
Try this
=
Num(money(sum(48/49)), '#.######')
Regards
Ren
Thanx it worked!