SOLVED

IFS AND

Copper Contributor

I am trying to create and IFS AND statement where 2 statements must be true to pull the result from another cell.

 

IFS

(AND(B7="A", A10="Orange Peel"), V180),

(AND(B7="Abaco", A10="Orange Peel"), V143),

(AND(B7="Albert", A10="Orange Peel"), V58),

TRUE, 0)

 

with several more lines similar to the above.  I know I must have something wrong; however; I'm not sure what the fix is.  Thanks for any help - it is appreciated.

 

 

3 Replies
best response confirmed by galley2 (Copper Contributor)
Solution

@galley2 

It looks like a problem with the your parenthesis. The one after V180 causes it to be the end of the IFS statement, so the subsequent ANDs are outside of the IFS function. 

Steve_SumProductCom_0-1711387381058.png

If that doesn't help, then please add more description about what is happening when you try your formula.

@galley2 

=IFS(

  AND(B7="A", A10="Orange Peel"), V180,

  AND(B7="Abaco", A10="Orange Peel"), V143,

  AND(B7="Albert", A10="Orange Peel"), V58,

  TRUE, 0)

@Steve_SumProductCom
Thank you so much. That helped and I found that I forgot to select the item in A10 - that fixed it. It is a Monday I guess. ;)
1 best response

Accepted Solutions
best response confirmed by galley2 (Copper Contributor)
Solution

@galley2 

It looks like a problem with the your parenthesis. The one after V180 causes it to be the end of the IFS statement, so the subsequent ANDs are outside of the IFS function. 

Steve_SumProductCom_0-1711387381058.png

If that doesn't help, then please add more description about what is happening when you try your formula.

View solution in original post