I have arrays of excel data 3 cols x 300 rows - example
| A | B | C |
|---|---|---|
| UNIT_TESTING | REMOTE_TEAM_AVATARS | SOCIAL_TIME |
| SOCIAL_TIME | ELIMINATE_LONG_LIVED_FEATURE_BRANCHES |
There will be blanks in some rows.
My goal among the 900 individual cells, find the unique values. Once I have the values displayed I want to count how many instances there of each unique value.
In the trivial case above the result would be:
| A | B |
|---|---|
| SOCIAL_TIME | 2 |
| ELIMINATE_LONG_LIVED_FEATURE_BRANCHES | 1 |
| ... |
In an ideal world I want to avoid creating a mid calc column of 900 elements
