Help with Rounding total off but leaving .00

  • Thread starter Thread starter Les Stout
  • Start date Start date
L

Les Stout

Hi all, this is probably quite simple but cannot find it, i need to
tally up a total and if it is 2541.512 then the answer should be 2542.00
and if it is 2541.425 then it must be 2541.00.

Any help much appreciated...

Best regards,

Les Stout
 
Just use this formula, and format the cells to Number with 2 decimal
=ROUND(A1,0)
 
format(application.Round(number,0),"#,##0.00")

if you using a formula in a cell

=Round(sum,0)

format the cell for #,##0.00
 
Thanks John Much Appreciated, great evening.. :0)

Best regards,

Les Stout
 
Thanks for the reply Tom & both versions...

Best regards,

Les Stout
 

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

Back
Top