I've used this question to build my drop down list, but I want to know if this can be used to change one list based off of the selection on another.
Here's the question: Data validation - Drop down list with no duplicates in excel
In my spreadsheet, I have columns like so:
Clients Stores
Client1 Store1
Client2 Store2
Client3 Store3
... ...
Say in the Clients list, you select client1. I want to show only the stores that buy from client1 (say Store2 and Store6). This list will be updated constantly, and new clients and stores will be added to the lists. How would I go about doing this?
Thank you
Edit:
Here's the basic formula that I used to create my lists:
=IFERROR(INDEX(A$2:INDEX(A:A, MATCH("zzz",A:A )), MATCH(0, COUNTIF(Z$1:Z1, A$2:INDEX(A:A, MATCH("zzz",A:A ))&""), 0)), "")
Edit #2:
Here's a better representation of my data:
Order ID Order Date Client Store
1234 MM/DD/YYYY Client1 Store6
5678 .... Client4 Store3
9101 Client3 Store6
5432 Client2 Store1


