Below is an example of the data I'm working with.
| Owner | Vendor | Product | Model | Location | Vendor2 | Product2 | Model2 | Location2 | Vendor3 | Product3 | Model3 | Location3 |
| Tyler | BlackRubber | Tires | 10 | San Francisco | MotoZone | Fairings | 20 | Portland | | | | |
| Jen | RaceCity | Detailing | 30 | Dubai | GlassCentral | Replacement | 40 | England | BreathEZ | AirIntake | 50 | San Francisco |
I would like the data to show as follows:
| Vendor | Product | Model # | Location | Owner |
| BlackRubber | Tires | 10 | San Francisco | Tyler |
| MotoZone | Fairings | 20 | Portland | Tyler |
| RaceCity | Detailing | 30 | Dubai | Jen |
| GlassCentral | Replacement | 40 | England | Jen |
| BreathEZ | AirIntake | 50 | San Francisco | Jen |
The number of duplicate columns vary based on how many vendors there are to an owner. Qiu helped me transform the data to multiple columns using the owner as the unique identifier. The topic of the discussion I originally posted is Moving rows from multiple columns based on a similar column value into a single row
I need help transforming it back to rows by using the Model # as the unique identifier.
Thank you in advanced for your support.