Rounding Number with Decimal Down

Hi Tb Community,

Just wondering if there is a way to round down numbers?

For example- I might 4732.53 and would want the output to be 4732

I tried searching the forums and found the ceil function but that rounds up

Thank you!

Hi @ajduna7,

We also have a floor function that allows you to round numbers down. Here’s an example of how to use it.

{formtext: default=4732.53; name=value}
Rounded down value: {=floor(value)}

1 Like

Thank you Ashwin! That is perfect

1 Like