How can I round to a 0 or 0.5 in Excel?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

For examples:

I want 23.20 to be 23.00
and
I want 23.6 to be 24.00

Thanks!
 
For your example numbers............assuming in A1 and A2

=ROUND(A1,0) entered in B1 and copied to B2

Format to 2 DP


Gord Dibben MS Excel MVP
 
If you want to round to the nearest whole number
=ROUND(A1,0)

Your subject line talks of rounding to 0 or 0.5, for which one option is
=MROUND(A1,0.5), but you'll need the Analysis ToolPak Add-In for that, or
else you could use =ROUND(A1*2,0)/2.
 
Not following you 100% as bot of your examples are rounding up to the nearest
whole number (noting to do with 0.5) ...but here is a formula to round to the
nearest .5

=ROUND(A1/0.5, 0)*0.5

and here it is to round up to the nearest .5

=ROUNDUP(A1/0.5, 0)*0.5
 
Rose try to click fx function box maybe you need a Roundown () and a Roundup
(), basic function of excel...
 

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

Back
Top