View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default How can I Round up to the nearest .25

Hi,

You can use just about any rounding function to do this:

=ROUNDUP(A3*4,)/4
=ROUND((4*A3)+0.49,)/4
=ROUNDDOWN(A3*4,)/4+1/4
=IF(MROUND(A3,1/4)A3,,1/4)+MROUND(A3,1/4)

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Dr. Darrell" wrote:

How can I Round up to the nearest .25.

I have Cells B3 thru G3 with Values: 3.02, 3.41, 3.65, 3.91, 4.29, and 4.79.
I would like them rounded up to the nearest .25 (3.25, 3.50, 3.75, 4.00,
4.50, 5.00).

Is there a function for this?