Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() I want to nest a formula with some if statements Here is my data i.e.: If my cell A1 equals "SWEEP" then I want it to say 10105, if it doesnt then I want it say 10145, but if it equals "0" then I want it to say "-" Thanks for the help in advance , my trouble is when I put the second If statement :) ![]() -- batmanlasd ------------------------------------------------------------------------ batmanlasd's Profile: http://www.excelforum.com/member.php...o&userid=28400 View this thread: http://www.excelforum.com/showthread...hreadid=479888 |
#2
![]() |
|||
|
|||
![]() You wrote "....I want *it* to say...." You don't tell us what IT is. I hope you are referring to the cell that contains the IF formula. If so... Try this in the cell of your choice: =IF(A1="SWEEP",10105,IF(A1=0,"-",10145)) Does this meet your needs? -- swatsp0p ------------------------------------------------------------------------ swatsp0p's Profile: http://www.excelforum.com/member.php...o&userid=15101 View this thread: http://www.excelforum.com/showthread...hreadid=479888 |
#3
![]() |
|||
|
|||
![]()
One way:
=IF(A1="SWEEP",10105,IF(A1=0,"-",10145)) An alternative: =IF(A1=0,"-",10105+40*(A1="SWEEP")) In article , batmanlasd wrote: I want to nest a formula with some if statements Here is my data i.e.: If my cell A1 equals "SWEEP" then I want it to say 10105, if it doesnt then I want it say 10145, but if it equals "0" then I want it to say "-" Thanks for the help in advance , my trouble is when I put the second If statement :) ![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
writing a formula for a colored value | New Users to Excel | |||
referencing named formula using INDIRECT function | Excel Worksheet Functions | |||
Simplify formula | Excel Worksheet Functions | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions |