View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
m.collett[_2_] m.collett[_2_] is offline
external usenet poster
 
Posts: 1
Default Can MROUND be used to always round down?

Thanks for all replies - I'll head off and experiment.
M

"Ron Rosenfeld" wrote:

On Mon, 19 Feb 2007 08:25:36 -0800, m.collett
wrote:

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