Hi I have 3 files here that I want to combine together in one tool.
Data 1
| ID | Store | Customer | Source |
| 111 | California | J.Ana | SA |
| 123 | Texas | Dave.L | DA |
| 124 | Florida | H.Carl | GA |
Data 2
Data 3
| Source | Source Category |
| SA | System |
| DA | Spreasheet |
| GA | Cost Sheet |
Expected output:
| ID | Store | Customer | Source | Category | Source Category |
| 111 | California | J.Ana | SA | N | System |
| 123 | Texas | Dave.L | DA | G | Spreasheet |
| 124 | Florida | H.Carl | GA | L | Cost Sheet |
Is there any other way to combine it easily in just one tool? even though they have different common fields per file? Could you help me with this one pls?