Reputation: 1
I am trying to create a formula that will return the employee names and ID's based on the Skill Name in cell A1 if the employee has a "Y" under that Skill Name. I have tried variations of xlookup, index, match, filter, and IF. I have spent hours googling trying to find something similar with no avail.
Let me know if I need to provide more detail/info
Any help is greatly appreciated!!
Upvotes: 0
Views: 75
Reputation: 21
Similar to @Spectral's answer:
=FILTER(Table1[[Employee Name]:[Employee ID]]; INDEX(Table1; 0; MATCH(A1; Table1[#Headers]; 0)) = "Y")
Upvotes: 1