Hi All,
My problem is as follows.
I have a table that looks like this:
| Name | Age | Favorite Cities |
| Tom | 25 | Seattle |
| | | New York City |
| | | Atlanta |
| Mike | 29 | San Francisco |
| | | Denver |
| | | Chicago |
| | | Detroit |
Based on one value (in this example that would be the name), I need to add a new column, which I have in a separate table like this:
| Name | Favorite Food |
| Tom | Pizza |
| Tom | Burger |
| Mike | Spaghetti |
| Mike | Fish |
I now want to pull those two together so that the end result looks like this:
| Name | Age | Favorite Cities | Favorite Food |
| Tom | 25 | Seattle | Pizza |
| | | New York City | Burger |
| | | Atlanta | |
| Mike | 29 | San Francisco | Spaghetti |
| | | Denver | Fish |
| | | Chicago | |
| | | Detroit | |
This is just an example, my actual data contains hundreds of cases that I need to go through, so doing that manually is hopefully avoidable 🙂
Please let me know if anyone has any ideas 🙂
Thank you!