Round to the nearest ...

Round To Nearest .01

round(100 * prop("Number")) / 100

Round To Nearest .1

round(10 *prop("Number")) / 10

Round To Nearest .5

round(prop("Number") / .5) * .5

Round To Nearest 1