rounding up or down

S

stoney

I need a formula the will round numbers up and down as this is for a golf
society numbers ending in .5 are rounded up (don't ask me why this is done !!)
please help
 
J

JLatham

Assume the number to be rounded is in A1, then this formula in another cell,
such as B1, will do it:
=ROUND(A1,0)
Numbers like 4.01 4.1, 4.2, 4.49 will round to 4
Numbers like 4.5, 4.6 ... 4.99 will round to 5

As for why it's done, it's a standard math 'rule': decimal values of .5 or
greater round UP to the next value, less than 5 (or .5) round down. As you
can see from the ROUND() function, it follows that rule.
 
M

Matt Richardson

I need a formula the will round numbers up and down as this is for a golf
society numbers ending in .5 are rounded up (don't ask me why this is done !!)
please help

As well as the ROUND function, Excel also has two other functions
which are specifically there for either rounding up or down, ROUNDUP
and ROUNDDOWN respectively.

Matt
http://teachr.blogspot.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

IF statements 4
Rounding down to specific numbers 2
Rounding 1
Excel Stop Excel from displaying rounded values 4
Round up or down to nearest 5, but not 10 2
vlookup and rounding 4
Formula help 1
Round up to next half number 7

Top