Hello,
I am attempting to join two tables on what we'll call 'Model Number.'
My problem is that the Left table has all unique Model Numbers on their own row (which I want), while the Right table groups Model Numbers onto one row by the parent model while tacking on multiple suffixes and separating them with a "/".
So for example:
Left Table:
M25B
M25R
M25BL
Right Table:
M25B/R/BL
So a couple wrinkles in this problem is that the suffix character length isn't always the same nor is the number of suffixes per model. What I'd like to do is make the Right Table look like the Left Table so I can join properly. Any suggestions/help is appreciated. Thank you!