Round-Up question

  • Thread starter Thread starter PFLY
  • Start date Start date
P

PFLY

How can I round a cell up to the nearest multiple of 20, or 25?
I want 53 to round up to 60 and 77 to round up to 100.
 
Hi
if you want to round up to multiple of 20 use

=CEILING(A1,20)

Multiple of 25

=CEILING(A1,25)

if this helps please click yes thanks
 
to the nearest 20 would be =ROUNDUP(A2/20,0)*20 to the nearest 25 would be
=ROUNDUP(A1/25,0)*25. Not sure where you want to change your multiples, but
just an IF statement...
 
Back
Top