Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey,
I'm trying to round up a number in a text box using the num() function.
I'm currently using the script: num(sum(budget),'#.##0',',','.') and getting the result: 35.756.
How should the script be if I want the result to be: 35.8?
Thanks,
Hey Colin,
If I use that script, I get 35756,4 😕
Hey Saurabh,
If I use that script, I get 35756,4.
Thanks, Peter
Hey Marco,
If I use the Ceil()-function I get 35756,4 😕
Hi,
try this
=Round(Sum(budget),0.1)
With Regards,
Arryan
Hi,
just one question . is your thousand seperator or decimal seperator.
Regards
Hey swuehl,
Thanks for the suggestions.
If I use =num(35768/1000,'#.0 k','.',',') I get 35756.4 k
and
If I use =num(35768/1000,'#.0','.',',') I get 35756.0
Peter
Hi
. is my thousand seperator.
Regards
Hi,
try this
ceil(num(sum(budget)/1000,'#.##0',',','.'),0.1)
Hi,
try it
=num(round(35.765,0.1))
Hi K N,
Good suggestion, still got 35756,4 though.