Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
can any suggest me how to format numbers
for ex:- i have 45.5643678541315
I just want to round up to 3 decimal after .
like 45.564
I tried this expression =Sum((vAnnualusage), '##.##0')
Num(YourFieldName,'#0.000') as YourFieldName
=NUM('45.5643678541315','#0.000')
=NUM(Sum((vAnnualusage),'#0.000'))
=Sum((vAnnualusage), '##.###')
Hi ,
Try this ,
=num(sum(vAnnualusage),'##.###')
should work !!
Regards
Sahil
Hi
Try like this
Num(Sum($(vAnnualusage)), '##.###')
Hope that vAnnualusage is the variable name.
Hi,
Try like the following..
round(num(Sum($(vAnnualusage))), 0.001)
Hope it will work..
Thanks Sahil it's work like a magic
Thanks
Amzad
Thank for Quick response Manish, anbu, Rama
Yes shail it work SuperB, Thanks
Hi,
You have to use Round function
=Round('45.5643678541315', 0.001 )
or
=Round( Sum(vAnnualusage), 0.001 )
Regards
Anand
Thanks Anand, it's work..