Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have the following formula:
=IF((E10E11),((E10-E11)*D10*C10),0) I'm trying to add an additional "IF" clause to this formula where cell E11 is not NULL. I haven't seemed to hit upon the correct formula. Ideas? Please advise. Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
what do you want to happen if E11 is null? Regards FSt1 "cjborntorun" wrote: I have the following formula: =IF((E10E11),((E10-E11)*D10*C10),0) I'm trying to add an additional "IF" clause to this formula where cell E11 is not NULL. I haven't seemed to hit upon the correct formula. Ideas? Please advise. Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
additional "if" could be if(e10<"", which would indicate that cell e10 is
other than an empty cell, that is, could be a value or a text. -- Denster "cjborntorun" wrote: I have the following formula: =IF((E10E11),((E10-E11)*D10*C10),0) I'm trying to add an additional "IF" clause to this formula where cell E11 is not NULL. I haven't seemed to hit upon the correct formula. Ideas? Please advise. Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(and(e11<"",E10E11),(E10-E11)*D10*C10,0)
or maybe check for a number =IF(and(isnumber(e11),E10E11),(E10-E11)*D10*C10,0) cjborntorun wrote: I have the following formula: =IF((E10E11),((E10-E11)*D10*C10),0) I'm trying to add an additional "IF" clause to this formula where cell E11 is not NULL. I haven't seemed to hit upon the correct formula. Ideas? Please advise. Thank you -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try this
=IF(AND(E11<"",E10E11),((E10-E11)*D10*C10),0) if E11 is blank, it will return 0. you can replace "" to 0 in the formula -- Hope this is helpful Pls click the Yes button below if this post provide answer you have asked Thank You cheers, francis "cjborntorun" wrote: I have the following formula: =IF((E10E11),((E10-E11)*D10*C10),0) I'm trying to add an additional "IF" clause to this formula where cell E11 is not NULL. I haven't seemed to hit upon the correct formula. Ideas? Please advise. Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
any formula to convert numbers in word form, e.g. "2" as "Two"? | Excel Worksheet Functions | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |