I currently have have a table that looks like this:
| A | B |
+-------+-----------+
1 | State | City |
+=======+===========+
2 | NSW | Goulburn |
3 | NSW | Sydney |
4 | VIC | Melbourne |
5 | VIC | Horsham |
6 | NSW | Tamworth |
And then I have another table that looks like this:
| A | B | C |
+-------+-----------+------------+
1 | State | City | Other data |
+=======+===========+============+
2 | | | |
In this second table I have applied data validation to both the State and City column, referencing the data from the first table. So I have drop down lists of all the states and cities.
What I want to be able to do is, if the user enters "NSW" in the State column, the list of options in the city column are filtered to show only the cities located in NSW
Worksheet_Changeevent to dynamically reset the validation, based on the value entered in Column A.