Can MROUND be used to always round down?

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

Guest

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)
 
=FLOOR(I1,0.25)

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
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
 
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)
 
Back
Top