Answered
round to nearest quarter
Hi,
How do I round this numbers?
10.24 = 10
10.26 = 10.5
10.74 = 10.5
10.76 = 11in Excel the function is MROUND or CEILING
Hi,
How do I round this numbers?
10.24 = 10
10.26 = 10.5
10.74 = 10.5
10.76 = 11in Excel the function is MROUND or CEILING
Simple math: You divide you value by the quantifier, round it and multiply it by the quantifier. In Javascript:
Math.round(value/0.5)*0.5
Mylenium
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.