P PFLY Sep 9, 2009 #1 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.
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 Sep 9, 2009 #2 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
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 Sep 9, 2009 #3 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...
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...