Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello everyone, I can't seem to get this formula to work: =IF(B2=1000.01,ROUNDUP(B2,-2)),IF(B2=25.01,CEILING(B2,5)),IF(B2=15.01,25) ,IF(B2=10.01,15),IF(B2=0.01,10),IF(B2=0,25) --- Am I doing something wrong? Please advise. -- Thanks, Himansu |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Much misplaced parentheses:
=IF(B2=1000.01,ROUNDUP(B2,-2),IF(B2=25.01,CEILING(B2,5),IF(B2=15.01,25,IF(B 2=10.01,15,IF(B2=0.01,10,IF(B2=0,25)))))) "Himansu" wrote: Hello everyone, I can't seem to get this formula to work: =IF(B2=1000.01,ROUNDUP(B2,-2)),IF(B2=25.01,CEILING(B2,5)),IF(B2=15.01,25) ,IF(B2=10.01,15),IF(B2=0.01,10),IF(B2=0,25) --- Am I doing something wrong? Please advise. -- Thanks, Himansu |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You have closed off everyone of your IF statements with an extra/misplaced
closing parentheses. Try it this way... =IF(B2=1000.01,ROUNDUP(B2,-2),IF(B2=25.01,CEILING(B2,5),IF(B2=15.01,25,IF(B 2=10.01,15,IF(B2=0.01,10,IF(B2=0,25)))))) Rick "Himansu" wrote in message ... Hello everyone, I can't seem to get this formula to work: =IF(B2=1000.01,ROUNDUP(B2,-2)),IF(B2=25.01,CEILING(B2,5)),IF(B2=15.01,25) ,IF(B2=10.01,15),IF(B2=0.01,10),IF(B2=0,25) --- Am I doing something wrong? Please advise. -- Thanks, Himansu |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks everyone. "Rick Rothstein (MVP - VB)" wrote in message ... You have closed off everyone of your IF statements with an extra/misplaced closing parentheses. Try it this way... =IF(B2=1000.01,ROUNDUP(B2,-2),IF(B2=25.01,CEILING(B2,5),IF(B2=15.01,25,IF (B2=10.01,15,IF(B2=0.01,10,IF(B2=0,25)))))) Rick "Himansu" wrote in message ... Hello everyone, I can't seem to get this formula to work: =IF(B2=1000.01,ROUNDUP(B2,-2)),IF(B2=25.01,CEILING(B2,5)),IF(B2=15.01,25) ,IF(B2=10.01,15),IF(B2=0.01,10),IF(B2=0,25) --- Am I doing something wrong? Please advise. -- Thanks, Himansu |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Regression Leverage Formula (Jerry W. Lewis or Mike Middleton)already have DFITS formula | Excel Worksheet Functions | |||
copy formula down a column and have cell references change within formula | New Users to Excel | |||
Formula expected end of statement error, typing formula into cell as part of VBA macro | Excel Programming | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions | |||
Commenting custom formula fields/formula on formula editor | Excel Programming |