Hi all,
I am brand new, taking the courses, and learning fast. Great tool!
I have two data sets with millions of rows that should contain the same set of data. I am trying to find the differences.
For both sets I concatenated three columns to create an unique ID column.
I want to compare the two unique ID columns to see the % match / mismatch.
How do I do that? Is there a way to see the % match between the two? The below data table is an example of what I am talking about.
| Customer Name | Customer ID | Number of purchases | Concat 1 |
| John | 1 | 10 | John110 |
| Bob | 2 | 11 | Bob211 |
| Sally | 3 | 12 | Sally312 |
| Customer Name | Customer ID | Number of purchases | Concat 2 |
| John | 1 | 10 | John110 |
| Bob | 2 | 11 | Bob211 |
| Jenny | 4 | 13 | Jenny413 |