I am trying to arrange data from three columns into a matrix which uses the unique values of two of those columns ("Department" and "Grade") to identify all of the values of that third column ("Position Title") which meet the criteria, and to display them all into the corresponding cell. I have tried XLOOKUP with some success, when only one match is made, but I run into problems when I instead try to use FILTER, I've also tried MATCH.
This formula, returns too much information (results highlighted in yellow, below). As only one filter is applied, I expected it to return all titles within the "Community Enrichment" department, based on cell M1.
=TEXTJOIN(", ",TRUE,FILTER(Table1[[Position Title]:[Grade]],(Table1[Department]=M$1),""))
When I add a second criteria for the "Include", it returns an #N/A error. I expected it to return all titles within the "Community Enrichment" department that are considered "Grade 14", based on cell G11.
=TEXTJOIN(", ",TRUE,FILTER(Table1[[Position Title]:[Grade]],(Table1[Department]=M$1)*(Table1[Grade]=$G11),""))
I have not worked with any of these functions until this specific project, so any help or direction is appreciated.
Thank you!
This formula, returns too much information (results highlighted in yellow, below). As only one filter is applied, I expected it to return all titles within the "Community Enrichment" department, based on cell M1.
=TEXTJOIN(", ",TRUE,FILTER(Table1[[Position Title]:[Grade]],(Table1[Department]=M$1),""))
When I add a second criteria for the "Include", it returns an #N/A error. I expected it to return all titles within the "Community Enrichment" department that are considered "Grade 14", based on cell G11.
=TEXTJOIN(", ",TRUE,FILTER(Table1[[Position Title]:[Grade]],(Table1[Department]=M$1)*(Table1[Grade]=$G11),""))
I have not worked with any of these functions until this specific project, so any help or direction is appreciated.
Thank you!