View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default How do I get MROUND to only round up to the next multiple.

If x and n have the same sign you can also use =CEILING(x,n)
--
David Biddulph

"Harlan Grove" wrote in message
oups.com...

Don't use MROUND. Instead of

=MROUND(x,n)

use

=ROUNDUP(x/n,0)*n


gmac wrote...
I do not wish to get a lower number when rounding to a miltpile of it.
I need to combing the MROUND and ROUNDUP.