Drop Down List Based on Value of Another Cell

manona

New Member
Joined
Mar 22, 2016
Messages
40
Hi,

I am wondering whether it is possible to have a drop down list based on the value of another cell. I have already created dependent drop-down lists, but now I am facing more of a "if this cell has this value, create this drop down list, otherwise don't let the user enter a value".

Here are the lists we can work with for this example:

FoodsFruitsVegetablesNutsGoodBad
FruitsAppleCarrotCashewsGood
VegetablesBananaCornAlmondsBad
NutsKiwiKalePeanuts

<tbody>
</tbody>


In in column A is found the Foods list (either fruits, veggies or nuts), and let's say we select Fruits. The drop down list in column B will then be either Apple, Banana or Kiwi. I have that covered!

My question is, let's say that ONLY for Fruits, I want the column C to have the "GoodBad" drop-down list - but only if column A has "Fruits" - otherwise I don't want the user to be able to enter any values (the sheet will be locked in the end, if this detail helps). Is this possible?

Thanks for your help!
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
In yoiur DV, use a type of List and a source of

Code:
=IF(A2="Fruits",Q3:Q4,"")

referring to the actual GoodBad list of course
 
Upvote 0
Hi theBardd,

Thank you for your response! I've tried what you mentioned, and I get a message "The list source must be a delimited list, or a reference to single row or column".

Any way you could further explain the elements I need to enter in the formula you provided please?

Thanks a lot!
 
Upvote 0
Try setting it up with Fruits already selected, and make sure that you replace Q3:Q4 with the actual cell references.
 
Upvote 0

Forum statistics

Threads
1,215,378
Messages
6,124,603
Members
449,174
Latest member
ExcelfromGermany

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