Hey all,
If I have two data sets that contain people's names and one uses formal first names and the other uses nicknames, how would I go about Joining these two? As an example (because football was on the mind):
Data Set 1:
Last Name | First Name | Date | 300+ Passing? |
Rodgers | Aaron | 9/18/2017 | Y |
Brady | Thomas | 9/18/2017 | Y |
Newton | Cameron | 9/18/2017 | N |
Wilson | Russell | 9/18/2017 | N |
Data Set 2:
Last Name | First Name | Date | 50+ Rushing? |
Rodgers | Aaron | 9/18/2017 | N |
Brady | Tom | 9/18/2017 | N |
Newton | Cam | 9/18/2017 | N |
Wilson | Russ | 9/18/2017 | Y |
Desired Output:
Last Name | First Name | Date | 50+ Rushing? | 300+ Passing? |
Rodgers | Aaron | 9/18/2017 | N | Y |
Brady | Thomas | 9/18/2017 | N | Y |
Newton | Cameron | 9/18/2017 | N | N |
Wilson | Russell | 9/18/2017 | Y | N |
Thank you for your time and I hope you all have a great day!!