Tesla MP3 2021
Basically, I need a formula to achieve the following..
Return a result in a particular cell (L1) based on the following IF conditions..
If particular cell (F1) = Yes then return Yes
If particular cell (F1) = No then return No
and then if...
"Yes" is in the same cell (F1) and there are also 2 other matches (Cisco 887Va and/or ADSL WIC) in another cell (G2) then then return N/A in (L1).
This is what I have which works for the first part which is easy, its the AND IF parts which don't seem to work, I am not sure if I should be using AND, OR, or both?
Cheers
Adam
Return a result in a particular cell (L1) based on the following IF conditions..
If particular cell (F1) = Yes then return Yes
If particular cell (F1) = No then return No
and then if...
"Yes" is in the same cell (F1) and there are also 2 other matches (Cisco 887Va and/or ADSL WIC) in another cell (G2) then then return N/A in (L1).
This is what I have which works for the first part which is easy, its the AND IF parts which don't seem to work, I am not sure if I should be using AND, OR, or both?
=IF(F2="Yes","Yes",IF(F2="No","No", IF(AND(G2="Cisco 887VA",F2="Yes"),"N/A",IF(AND(G2="ADSL WIC",F2="Yes"),"N/A"))))
Cheers
Adam