I have a spreadsheet that has 4 columns (see below for example). The first column has a unique ID, and then the next three are date requested, Customer name, and Country. I want to figure out how to match IDs when the other three columns are the same.
Current Data Set:
ID | Date Requested | Customer name | Country
1 1/1/2019 Bob Smith USA
2 2/2/2019 Sal Jones DE
3 1/1/2019 Bob Smith USA
4 12/2/2017 Jim Gold USA
5 2/2/2019 Sal Jones DE
I want to be able to create another column that would show the ID of row that has the same information. For example, the new table would look like:
ID | Date Requested | Customer name | Country | Duplicate ID
1 1/1/2019 Bob Smith USA 3
2 2/2/2019 Sal Jones DE 5
3 1/1/2019 Bob Smith USA 1
4 12/2/2017 Jim Gold USA
5 2/2/2019 Sal Jones DE 2
Is there a way to use VLookUp for the new column or some other function in excel?
EDIT: The end goal is to be able to actually link the two together with a common 'Group' or ID' number. For example, the table would look like this in the end:
ID | Date Requested | Customer name | Country | Duplicate ID | Group
1 1/1/2019 Bob Smith USA 3 1
2 2/2/2019 Sal Jones DE 5 2
3 1/1/2019 Bob Smith USA 1 1
4 12/2/2017 Jim Gold USA
5 2/2/2019 Sal Jones DE 2 2
This way, you could filter the Group Column and the two duplicate entries would be next to each other/have a common link in the same column.