Excel IF with Multiple Criteria and Results

JoeyGaspard

Board Regular
Joined
Jul 22, 2019
Messages
147
I have 2 columns in an excel spread sheet, and depending on the contents of the columns, I need to return 1 of 3 results.
If cell A2 is Blank and B2 = XXX, then I need to return Yes
If cell A2 is Blank and B2 is not XXX, then I need to return NO
If cell A2 is NOT blank, then I need to return A2, regardless of what is in B2.
I have tried everything if and ifs statement I know and cant figure this out? Any help is greatly appreciated.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Perhaps
Excel Formula:
=IF(A2<>"",A2,IF(AND(A2="",B2="XXX"),"Yes","No"))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,943
Messages
6,122,370
Members
449,080
Latest member
Armadillos

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