How to link multiple drop down lists that will lead to True or False outcome.

kwyang

New Member
Joined
Dec 3, 2017
Messages
5
Hi everyone,

I'm trying to link 3 drop down lists together, which will lead to True/False outcome.
I have tried IFS statement, but I think it's too cluttered and might not be the best option.
My other option is to create variables for each category, but I'm not sure how to do it in Excel (my guess is conditional formatting).

Alphabets:
A, B, C, D, E

Numbers 1:
1, 2, 3

Numbers 2:
10, 11, 12

Outcome:
True/False

If D, 2, (10, 11), True, Else, False

any advise is much appreciated :)
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
@kwyang, let's say your Alphabet is in A2, your Numbers 1 is in B2, your Numbers 2 is in C2, and your result is in D2.

In D2:

Code:
=IF(AND(A2="D", B2=2, OR(C2=10,C2=11)), TRUE, FALSE)
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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