Can MROUND be used to always round down?

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)
 
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)
 

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

Top