I'd go with a sliglty different approach that Tom and Owen (as I don't understand why they join value from the two columns, this will create longer string making the cluster algorithm less efficient).
1/ Make sure that your have no cell with blank content in both cells, if so replace it by a non used character like a pipe |
2/ transpose the
two column across rows into: (1) one unique column that you can name: named and (2) by prepend the column name.
3/ Split your new column into two rows, one named 'previous column name', one named 'data'
4/ Cluster as much as you need on the new data column
Now we need to get your data back in the original format:
5/ filter on the 'previous column name' and select 'Collector' value
6/ Create a new column based on the 'data' column and keep the same value, name this new column Collector
7/ blank all Collector value on 'data' column
8/ Remove the facet on the 'previous column name' field
9/ Rename the data value to 'Identifier ' and fill down.
10/ Filter the Collector field on blank and remove all matching records
11/ You're done!