Round to the nearest ...
Round To Nearest .01
- Convert 77.019 → 77.02
- Convert 77.254 → 77.25
- Convert 77.519 → 77.52
- Convert 77.754 → 77.75
round(100 * prop("Number")) / 100
Round To Nearest .1
- Convert 77.01 → 77.
- Convert 77.25 → 77.3
- Convert 77.51 → 77.5
- Convert 77.75 → 77.8
round(10 *prop("Number")) / 10
Round To Nearest .5
- Convert 77.01 → 77
- Convert 77.25 → 77.5
- Convert 77.51 → 77.5
- Convert 77.75 → 78
round(prop("Number") / .5) * .5
Round To Nearest 1