Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have value in decimal points like 2.3567890 and i want to show rounded value like 2.357, so guide me how i use ceil function to achive result
Hi zain,
Ceil(2.3567890, 0.001) should do the trick ![]()
-Teemu
Hi,
Many ways you can achieve it
Num(2.3567890, 0.000)
Round(2.3567890, 0.001)
Ceil(2.3567890, 0.001)
Hope it helps
Celambarasan