Round Up function

Hi,

I’m looking for something similar to “ROUNDUP” function in Excel. Is there a way to do it in Easy Morph? I tried both ‘round’ and ‘roundxl’ but neither one of them does what I need. What I’m trying to achieve is something like this: round(10.231, 2) = 10.24

There is no a dedicated function for that but this should work if all numbers are positive.

ceiling([Value] * 100) / 100

why multiply by 100?