Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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(B30,(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? |
#2
![]() |
|||
|
|||
![]() Try the following =IF(B3<=0," ",IF(B30,(ROUNDUP((D2+B3)*1.5%,2)))) Celtic_Avenger -- Celtic_Avenger ------------------------------------------------------------------------ Celtic_Avenger's Profile: http://www.excelforum.com/member.php...o&userid=14101 View this thread: http://www.excelforum.com/showthread...hreadid=273038 |
#3
![]() |
|||
|
|||
![]()
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(B30,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. On Wed, 27 Oct 2004 17:27:01 -0700, eric p wrote: 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(B30,(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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
sharing/using/saving Excel 2002 files in Excel 2003 | Excel Discussion (Misc queries) | |||
can a workbook with macros created in excel 2003 work in excel 20. | Excel Discussion (Misc queries) | |||
Excel 2000 file when opened in Excel 2003 generates errors? | Excel Discussion (Misc queries) | |||
Saving a Excel 97 file into Excel 2003 file | Excel Discussion (Misc queries) |