Can MROUND be used to always round down?

M

m.collett

I would like to be able to round a number to 0.25 but always rounding down (I
also need to be able to do the same thing, but always round up)
 
B

Bob Phillips

=FLOOR(I1,0.25)

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
R

Ron Rosenfeld

I would like to be able to round a number to 0.25 but always rounding down (I
also need to be able to do the same thing, but always round up)

Lots of ways:

=ROUNDDOWN(A1/0.25,0)*0.25
=ROUNDUP(A1/0.25,0)*0.25

=CEILING(A1,0.25)
=FLOOR(A1,0.25)
--ron
 
D

Dave Peterson

maybe you could use:

=floor(a1,.25)



m.collett said:
I would like to be able to round a number to 0.25 but always rounding down (I
also need to be able to do the same thing, but always round up)
 
Top