I want to round values to its nearest 50. For e.g.
121 should get rounded to 100
129 should get rounded to 150
178 should get rounded to 200
165 should get rounded to 150
I have tried the following functions...
=FLOOR(C629,50)
=FLOOR((C629+50),50)
=CEILING(C631,50)
But I am still not getting the results as expected.
From the examples you have provided, it appears that you want to move each number to the nearest multiple of 50.
This function should accomplish this:
=ROUND(C629 / 50 , 0) * 50
This works in the following manner for 129
:
EDIT: The OP's comment to use the in-built MROUND
is a much better idea.
For clarity, the simplest answer is MROUND
, e.g.:
=MROUND(589,50)
This solution was submitted in a comment by shantanuo.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With