I consolidated by inserting a Master sheet with the original source data in it.
In M2 of 'bulk_upload_sample' array enter this formula and fill down until you get blanks. It returns the unique skus. If you aren’t familiar with array-entered formulas array enter means the formula must be committed from edit mode by simultaneously pressing and holding down Ctrl and Shift while hitting Enter.
Formula:
=IFERROR(INDEX(Master!$A$2:$A$81,SMALL(IF(FREQUENCY(MATCH(Master!$A$2:$A$81,Master!$A$2:$A$81,0),
ROW($A$2:$A$81)-MIN(ROW($A$2:$A$81))+1),ROW($A$2:$A$81)-MIN(ROW($A$2:$A$81))+1),ROWS($2:2))),"")
Then to return the image files array enter this in J2 fill down and across until you get blanks.
Formula:
=IF($M2="","",INDEX(Master!$E$2:$E$81,MIN(IF(ISNUMBER(FIND(COLUMNS($J:J)&".",Master!$E$2:$E$81))*
ISNUMBER(FIND(".jpg",Master!$E$2:$E$81))*($M2=Master!$A$2:$A$81),ROW($A$2:$A$81)-MIN(ROW($A$2:$A$81))+1))))
In F2 this non array formula filled down until blanks. It returns the descriptions.
Formula:
=IF($M2="","",INDEX(Master!$F$2:$F$81&"",MATCH(M2,Master!$A$2:$A$81,0)))
This non array entered in B2 and filled down returns the titles.
Formula:
=IF($M2="","",INDEX(Master!$D$2:$D$81,MATCH(M2,Master!$A$2:$A$81,0)))
Bookmarks