how do I get excel 2003 to round up

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have the following formula but i need the results to round up if there are
3 digits after the decimal point =IF(B3<=0," ",IF(B3>0,(D2+B3)*1.5%))
excample 8.011 would become 8.02 what do i need to add to this formula to
make it do that?
 
Try the following

=IF(B3<=0," ",IF(B3>0,(ROUNDUP((D2+B3)*1.5%,2))))


Celtic_Avenge
 
Guess what! With a function named ROUNDUP. But you don't need a 2nd IF
statement. If B3 is not <=0, it must be >0.

=IF(B3<=0,"",ROUNDUP((D2+B3)*1.5%,2))

Or:

=IF(B3>0,ROUNDUP((D2+B3)*1.5%,2),"")

Check it out in Help if you need more information. Notice that I removed the
space between your quote marks, too.
 

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