roundup by 16s

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

Guest

I'm looking for a formula that will allow me to type in a number and roundup
to the largest multiple of 16 with a minimum of 64.

For example, if I type in 60 in Cell A1, then in cell A2 I want it to
roundup to 64.

Thanks.
 
Try this:

For a value in A1

B1: =MAX(CEILING(A1,16),64)

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 
In A2,

=MAX(64,IF(MROUND(A1,16)<A1,MROUND(A1+16,16),MROUND(A1,16)))

HTH,
Bernie
MS Excel MVP
 
Back
Top