I got a large list of skus and a list of "parent" skus. I want to match similar skus and list them out row.
Check the image below!
Anybody out there with spreedsheet skills out there? (it can be excel or google sheet)
I got a large list of skus and a list of "parent" skus. I want to match similar skus and list them out row.
Check the image below!
Anybody out there with spreedsheet skills out there? (it can be excel or google sheet)
In B2 use =ArrayFormula(UNIQUE(REGEXEXTRACT(A2:A,"\d+")))
That will extract the SKU parent id before the - and remove duplicates.
Then in C2 put =JOIN(", ",FILTER($A$2:$A$18,REGEXMATCH($A$2:$A$18,B2)))
That will filter all SKU's by the parent SKU in column C and join them together in a string.
That formula can then be dragged down.
If anyone knows a solution to combine the latter formula with with an array formula to avoid dragging I'm happy about suggestions.