Three Criteria for an If Statement

Excel_77

Active Member
Joined
Sep 15, 2016
Messages
311
Office Version
  1. 2019
Platform
  1. Windows
Hi All,

In column A I want to check for "Liverpool Football" and in Column B I want to check for the words "Football" or "Sport", if this criteria is met I want "yes" returned otherwise "no", how can this be done?

Thanks
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December

Unknown
ABC
1Liverpool FootballFootballYes
2OtherFootballNo
3Liverpool FootballSportYes
4OtherSportNo
5OtherFootballNo
6Liverpool FootballNothingNo
Sheet8
Cell Formulas
RangeFormula
C1=IF(AND(A1="Liverpool Football",ISNUMBER(MATCH(B1,{"Football","Sport"},0))),"Yes","No")
 
Last edited:
Upvote 0
Great, works perfectly, jut in the same vein why is the below not working for me? Basically if column A has "Yes" in it I want "1" returned, otherwise I want to check B and if it has yes I want "5" returned and if both fail I want "test" returned, I have tried below and just been returned "FALSE".

=IF(IF(A="Yes","1"),IF(B="Yes","5","Test"))
 
Upvote 0
Hi, the second IF() should be nested in the FALSE part of the first IF().

=IF(A1="Yes",1,IF(B1="Yes",5,"Test"))

Note, you should also leave the quotes from around the numbers else they get returned as text.
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,772
Members
452,353
Latest member
strainu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top