I have a dropdown column (multi-select) that lists participating districts. Each row is a different program that can have different districts or sometimes the districts repeat. I am trying to count how many unique districts participated.
In a separate column (dropdown - multi-select), I am trying to use JOIN to pull all the districts so I can then count them.
Columns:
- Districts: Districts per program
- All Districts: Joining all Districts (single cell)
- Total Districts: Total count of all districts (single cell)
Formula in All Districts column: =JOIN([Districts:Districts, CHAR(10))
Formula in Total Districts: =COUNTM([All Districts]@row)
The issue is that I know the JOIN is not pulling all districts. It is leaving a few out, so that is making my total Districts value incorrect.
If I split the JOIN up and only do a few cells at a time, it works fine, and nothing gets missed. But I can't figure out why when I try to do it all together it leaves some districts out of the join. I need it all to pull into one, so I don't count districts more than once, which happens when I split it up into smaller joins.
Any thoughts or help would be greatly appreciated. Thanks!