I have two dropdown lists.
The first list source is a column with client names. The values can appear multiple times but I already managed to only appear unique values on the dropdown list.
The second dropdown list should be dependent on the first. According to the client selected it should give back ALL issues from that client.
I used this formula:
[\CODE]
=INDEX(ID.2;SMALL(INDEX(($D$4=Clients_Name2)*(MATCH(ROW(Clients_Name2);ROW(Clients_Name2)))+($D$4<>Clients_Name2)*1048577;0;0);ROW(A1)))
[\CODE]
ID.2 is the column with the issues, Clients_Name2 is the column with the clients names and D4 is the cell where I select the value from the first dropdown list.
But it only appears the first result of each client. How can I make it to appear all results from each client?
The first list source is a column with client names. The values can appear multiple times but I already managed to only appear unique values on the dropdown list.
The second dropdown list should be dependent on the first. According to the client selected it should give back ALL issues from that client.
I used this formula:
[\CODE]
=INDEX(ID.2;SMALL(INDEX(($D$4=Clients_Name2)*(MATCH(ROW(Clients_Name2);ROW(Clients_Name2)))+($D$4<>Clients_Name2)*1048577;0;0);ROW(A1)))
[\CODE]
ID.2 is the column with the issues, Clients_Name2 is the column with the clients names and D4 is the cell where I select the value from the first dropdown list.
But it only appears the first result of each client. How can I make it to appear all results from each client?