Hi,
I have table that is dynamic and changes whenever I change the a value (Employee ID) in specific cell of a drop-down list. So when I change this ID then locations related to this ID should change, the issue I'm facing is that each Employee ID has different number of locations, some has 5, others have 20+ and so on. How can I write a formula that bring all locations according to the Employee ID?
The current formula that I'm using right now are below and I need to modify them:
the first line formula is:
then I add 1 till I reach to 25 which is not a great option:
I have table that is dynamic and changes whenever I change the a value (Employee ID) in specific cell of a drop-down list. So when I change this ID then locations related to this ID should change, the issue I'm facing is that each Employee ID has different number of locations, some has 5, others have 20+ and so on. How can I write a formula that bring all locations according to the Employee ID?
The current formula that I'm using right now are below and I need to modify them:
the first line formula is:
Code:
=IFERROR(INDEX('Dropdown List'!$U$2:$U$99,MATCH(Org_Layer!$AC$10,'Dropdown List'!$T$2:$T$99,0)),"")
then I add 1 till I reach to 25 which is not a great option:
Code:
=IFERROR(INDEX('Dropdown List'!$U$2:$U$99,MATCH(Org_Layer!$AC$10,'Dropdown List'!$T$2:$T$99,0)+1),"")
Code:
=IFERROR(INDEX('Dropdown List'!$U$2:$U$99,MATCH(Org_Layer!$AC$10,'Dropdown List'!$T$2:$T$99,0)+2),"")