Rounding Up or down to 1/2 Units

  • Thread starter Thread starter Mal
  • Start date Start date
M

Mal

Hi People,
Is there a way to round up or down in 1/2 units.
e.g. 2.3 up to 2.5, 2.1 down to 2.
Any help appreciated.
Thanks,
Mal
 
Hi People,
Is there a way to round up or down in 1/2 units.
e.g. 2.3 up to 2.5, 2.1 down to 2.
Any help appreciated.
Thanks,
Mal

=ROUND(A1*2,0)/2


--ron
 
Mal said:
Is there a way to round up or down in 1/2 units.
e.g. 2.3 up to 2.5, 2.1 down to 2.

=MROUND(value,0.5)

If MROUND() results in a #NAME? error, see the
MROUND Help text for instructions on "installing"
the Analysis ToolPak add-in.
 
I'm trying to round up or down after executing a formula in a cell.

Here's formula I have in cell
=IF($B$10>0,+B10/15,"")

Assuming result is a positive number, I want to round to the nearest .5, up
or down.

Thanks for any advice you might have.

DaleWid
 
Try

=IF($B$10>0,ROUND(B10/15/0.5,0)*0.5,"")

--
Regards,

Peo Sjoblom

Portland, Oregon
 
Many thanks, worked perfectly,
Dale Wid

Peo Sjoblom said:
Try

=IF($B$10>0,ROUND(B10/15/0.5,0)*0.5,"")

--
Regards,

Peo Sjoblom

Portland, Oregon
 

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