Find the lowest and highest decimal/integer

1
Hi, I was wondering if there was a pre-made function like lower() or higher(), like there is round().
asked
1 answers
3

Take a look at the floor and ceil functions. These round down or up.

https://docs.mendix.com/refguide/mathematical-function-calls/#6-floor
https://docs.mendix.com/refguide/mathematical-function-calls/#7-ceil

answered