Head Gone to Mush with an IF formula

S

Sean

Could I ask for help, as my brains turned to mush and I'm cross eyed
looking at this simple IF formula. What I wish to express is:

IF Z33=0, then
IF Sum(N71:p71)=0, then
IF Y33=FALSE

Then return value in A71, otherwise
<blank>

My umteenth attempt is below, but it returns "FALSE"

=IF(Z33=0,IF(SUM(N71:p71)=0,IF(Y33=FALSE,A71,""),""))
 
S

Sean

Max a better representation might be:

Z22=0
Sum(N60:p60)=0
Y22=TRUE

So I expect my answer to return "", it displays as FALSE
 
M

Max

One guess, try:
=IF(Z33=0,IF(SUM(N71:p71)=0,IF(Y33="FALSE",A71,""),""))
The above presumes that you're checking Y33 for the text: FALSE
 
D

David Biddulph

You haven't defined the answer for when Z33 is not zero, so in that case it
would return FALSE.
You could try either
=IF(Z33=0,IF(SUM(N71:p71)=0,IF(Y33=FALSE,A71,""),""),"") or
=IF(AND(Z33=0,SUM(N71:p71)=0,Y33=FALSE),A71,"")
 
S

Sean

You haven't defined the answer for when Z33 is not zero, so in that case it
would return FALSE.
You could try either
 =IF(Z33=0,IF(SUM(N71:p71)=0,IF(Y33=FALSE,A71,""),""),"") or
 =IF(AND(Z33=0,SUM(N71:p71)=0,Y33=FALSE),A71,"")
--
David Biddulph










- Show quoted text -

Thanks, its pretty simple but I just couldn't see it
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top