ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   "IF" formula help needed (https://www.excelbanter.com/excel-discussion-misc-queries/223894-if-formula-help-needed.html)

cjborntorun

"IF" formula help needed
 
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

FSt1

"IF" formula help needed
 
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


DeN

"IF" formula help needed
 
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


Dave Peterson

"IF" formula help needed
 
=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

Francis

"IF" formula help needed
 
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



All times are GMT +1. The time now is 04:20 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com