• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Rounding up

Safequip

Member
Hi I want to round my figures up to the nearest 0.50p or £1.00 but so far I can only work out how to round to nearest 0.50p by using =CEILING(P364,0.5) anyone help me with what I'm missing? As always thanks in advance.
 
This will round to the nearest .50 so 1.49 becomes 1.50, 1.24 becomes 1.00, 1.75 becomes 2.00 etc.

=ROUND(A1*2,0)/2
 
Last edited:
Try this, it rounds anything below .5 to x.50 and anything above to the next whole number

=IF(MOD(A1,1)>0.5,ROUNDUP(A1,0),ROUNDDOWN(A1,0)+0.5)

kanti
 
Back
Top