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

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
=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?
The outer IF statment is constructed like =IF(A2="Jan", [If True] ). Since it is missing the [if False] value it returns the value FALSE.

For that construction
=IF(A2="Jan", IF( B2=2020, IF( C2="Too Small", D2, "")), "")
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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