Round-Up question

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.
 
E

Eduardo

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
 
S

Sean Timmons

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

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

Similar Threads

Round formula 1
Rounding by .05 4
rounding up to nearest specified whole number 1
Formula Help 1
round up to nearest 50p 1
ROUNDUP Function 1
Average rounded to nearest 0.50 4
Round number to whole No 25 1

Top