Roundup

  • Thread starter Thread starter rajgopal
  • Start date Start date
R

rajgopal

I would like to roundup 1.23 to 1.25, 1.26 to 1.30, 1.28 to 1.30, 1.3
to 1.35 etc..

How can I use the roundup formula
 
ROUNDUP rounds based on how many decimal places you want, so it will change
the # of decimals if it's going to do any rounding. Since you want decimal
places the same before and after, try

=MROUND(A1,0.25)
 
That wont work sorry, try

=ROUNDUP(A1*2,1)/2




Dave R. said:
ROUNDUP rounds based on how many decimal places you want, so it will change
the # of decimals if it's going to do any rounding. Since you want decimal
places the same before and after, try

=MROUND(A1,0.25)
 
Back
Top