I'm using a combination of JOIN and COLLECT to get some data, but the COLLECT is only looking at the first value in my Multiselect column for the criterion range.
I have a sheet that lists value similar to below:
Name Category
A 1,2
B 2,3
C 1,3
What I'm trying to do is have another sheet display it this way:
Category Name
1 A,C
2 A,B
3 B,C
My current formula is only displaying it this way:
Category Name
1 A,C
2 B
3 <Blank>
Any suggestions?