Disclaimer: I am super new to using any of the complex formulas, I have only ever had to do basic formulas. I am using Microsoft Excel and have two tables. Table 1 has a list of locations, including a zip code and a team name. Table 2 has a list of companies with information including a zip code for their location. I am trying to match the zip code of the company in table 2 with the zip code in the table 1, and return the team name in an additional column in table 2 that I can filter on.
I have tried searching stackoverflow and tried implementing a few of the solutions I found including IF statements, VLookUp, and Index. The previous posts I found were not using tables, I am not sure if that makes a difference.
Table 1
Team Red 12345
Team Blue 12346
Team Green 12347
Team Red 12348
Team Blue 12349
Team Green 12344
Table 2
Company A 12345
Company B 12346
Company C 12347
Company D 12348
Company E 12349
Company F 12344
Company H 12345
Company I 12346
Company J 12347
Company K 12346
Company L 12348
The third column is what I want to return and filter on:
Company A 12345 Team Red
Company B 12346 Team Blue
Company C 12347 Team Green
Company D 12348 Team Red
Company E 12349 Team Blue
Company F 12344 Team Green
Company H 12345 Team Red
Company I 12346 Team Blue
Company J 12347 Team Green
Company K 12346 Team Blue
Company L 12348 Team Red