I'm trying to compile a list of teachers that have recommended students for certain classes. We have a massive spreadsheet of teachers and their recommendations. I'd like to have a column that compiles a list of teachers that have said "YES" for a given student. See the sample sheet for an example and the desired result (yellow). Thanks in advance!
Thanks so much! That's a much simpler formula than I was thinking was needed! I came up with:
=IFNA(Textjoin(", ",True,FILTER(ARRAYFORMULA(IF(G3:EP3 = "YES",G$1:EP$1,"")),Len(ARRAYFORMULA(IF(G3:EP3 = "YES",G$1:EP$1,"")))>1))), which seems to work also, but is much more cumbersome.