rounding currency up with 2 decimal places

G

Guest

Hi:

I know this should be simple, but I can't figure it out. I have the following formula in a cell: =D6*1.16/0.8. It takes the value from cell D6multiplies it by 1.16 and then divides by .80. I would like to round the number up to the nearest whole number and have two zero decimal places. example: round number $78,118.75 to $78,119.00. I can get it to round up without the 2 decimal place, but not with.

Any help would be appreciated.
 
J

J.E. McGimpsey

one way:

=CEILING(D6*1.16/0.8, 1)

or

=ROUNDUP(D6*1.45, 0)

set your formatting to 2 decimal places.
 

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

Top