I know this has been addressed a bunch of times, but I can't a solution for where the data are not already organised.
In the following example I'd like to have E1 validated on the countries, and E2 based on the subset of cities corresponding to the country selected in E1. Ideally E1 would not include duplicate entries
In the following example I'd like to have E1 validated on the countries, and E2 based on the subset of cities corresponding to the country selected in E1. Ideally E1 would not include duplicate entries
Book1 | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Countries | Cities | . | Selected.Country: | USA | E1.validated.based.on.list.of.Countries | ||
2 | USA | New.York | . | Selected.City: | . | How.can.I.validate.E2.based.on.subset.of.cities.that.corresponds.to.value.selected.in.the.E1? | ||
3 | USA | Pittsburgh | . | . | . | . | ||
4 | France | Paris | . | . | . | . | ||
5 | USA | Los.Angeles | . | . | . | . | ||
6 | USA | Boston | . | . | Defined.names: | . | ||
7 | France | Toulon | . | . | Countries= | OFFSET(Sheet1!$A$2,0,0,COUNTA(Sheet1!$A:$A)-1,1) | ||
8 | France | Nice | . | . | Cities= | OFFSET(Sheet1!$B$2,0,0,COUNTA(Sheet1!$A:$A)-1,1) | ||
Sheet1 |