Answered
Rounding to the Nearest 5, but making 5 come back as 5 instead of 10
Hi,
I used the following script:
Math.ceil(N / 5) * 5;
But it's not quite giving me what I want. For instance "5" returns "10", but I need it to return "5"
I need it to look like the following:
0.01 - 5.00 = 5
5.01 - 10.00 = 10
10.01 - 15.00 = 15
15.01 - 20.00 = 20
