If Statement with Multiple Conditions

abbeyrd237

New Member
Joined
Jun 9, 2020
Messages
16
Platform
  1. MacOS
Hello,

I'm trying to find the best formula where it will return Column D (Name) if it meets all 3 conditions (Column A,B and C). For example, If Jan 2020 Too small, return Jane Doe. Also return a blank if false. Thank you!

Column A Column B Column C Column D
Jan 2020 Too small Jane Doe
Feb 2020 Too big John Doe
Mar 2019 Too small Jim Doe
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
What three conditions?
Also what values are in which column
Is "Jan" in A2, 2020 in B2, "Too" in C2 or some other division?
 
Upvote 0
@abbeyrd237 your explanation suggest you are looking for a different formula for rows 2, 3 and 4 but I suspect you actually want something to apply equally to all rows. Please confirm?
 
Upvote 0
This is the sample data. I wanted to use a formula where it returns the name of the person if it meets all 3 conditions (Month, Year and Reason). Example, If Jan 2020 Too small, return John & Alice and any other names that meet these conditions. But if not a match, return a blank.


Screen Shot 2020-06-16 at 2.44.21 PM.png
 

Attachments

  • Screen Shot 2020-06-16 at 2.33.41 PM.png
    Screen Shot 2020-06-16 at 2.33.41 PM.png
    85.6 KB · Views: 0
Upvote 0
Under the column named Return, looking for a formula that can return the name or leave a blank if conditions not met

Screen Shot 2020-06-16 at 3.15.45 PM.png
 
Upvote 0
=IF(A2="Jan", IF( B2=2020, IF( C2="Too Small", D2, "")))
This formula seems to work but it still returns FALSE if the condition isn't met. Not sure why it won't return a blank?
 
Upvote 0

Forum statistics

Threads
1,214,947
Messages
6,122,413
Members
449,082
Latest member
tish101

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