Reputation: 39
i want to know how to make dynamic drop down list in Google Sheets, e.g I have a list of continents in "Continent" column (data validation applied) and want to validate the next column with only countries that fall on previous selected continent. Example sheet
It would be helpful to solve this without script. If it required script please explain in detail.
Upvotes: 2
Views: 4556
Reputation: 1706
The way to do this without a script involves a helper list. Here are the steps:
ARRAYFORMULA
and INDIRECT
ARRAYFORMULA(INDIRECT())
You can see the working example here: https://docs.google.com/spreadsheets/d/1Snn2ZpDTpb1I96ihsRHcUqvgsijiHPQNqqRD9bc-1_A/edit?usp=sharing
Upvotes: 1