INDEX/MATCH Help

gbdenisse

New Member
Joined
Nov 4, 2015
Messages
1
I have the following scenario

[TABLE="width: 500"]
<tbody>[TR]
[TD]Package SKU[/TD]
[TD]Individual SKU[/TD]
[/TR]
[TR]
[TD]8000P[/TD]
[TD]12345[/TD]
[/TR]
[TR]
[TD]8000P[/TD]
[TD]12370[/TD]
[/TR]
[TR]
[TD]8001P[/TD]
[TD]12345[/TD]
[/TR]
[TR]
[TD]8001P[/TD]
[TD]12350[/TD]
[/TR]
[TR]
[TD]8001P[/TD]
[TD]12382[/TD]
[/TR]
</tbody>[/TABLE]

I want my data to look like this, I need help with bringing the individual SKUs across columns so that each row is unique.

[TABLE="width: 500"]
<tbody>[TR]
[TD]Unique Package SKU[/TD]
[TD]Individual SKU 1[/TD]
[TD]INDIVDUAL SKU 2[/TD]
[TD]INDIVIDUAL SKU3[/TD]
[/TR]
[TR]
[TD]8000P[/TD]
[TD]12345[/TD]
[TD]12370[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8001P[/TD]
[TD]12345[/TD]
[TD]12350[/TD]
[TD]12382[/TD]
[/TR]
</tbody>[/TABLE]

I tried using INDEX MATCH but I can drag the formula across columns only down..Help!
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
maybe something like...

B9=IFERROR(INDEX($B$2:$B$6,SMALL(IF($A$2:$A$6=$A9,ROW($A$2:$A$6)-ROW($A$2)+1),COLUMNS($B9:B9))),"") control shift enter

[TABLE="class: grid"]
<tbody>[TR]
[TD]Row\Col[/TD]
[TD]
A​
[/TD]
[TD]
B​
[/TD]
[TD]
C​
[/TD]
[TD]
D​
[/TD]
[/TR]
[TR]
[TD]
1​
[/TD]
[TD]Package SKU[/TD]
[TD]Individual SKU[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
2​
[/TD]
[TD]8000P[/TD]
[TD]
12345​
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
3​
[/TD]
[TD]8000P[/TD]
[TD]
12370​
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
4​
[/TD]
[TD]8001P[/TD]
[TD]
12345​
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
5​
[/TD]
[TD]8001P[/TD]
[TD]
12350​
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
6​
[/TD]
[TD]8001P[/TD]
[TD]
12382​
[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
7​
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
8​
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
9​
[/TD]
[TD]8000P[/TD]
[TD]
12345​
[/TD]
[TD]
12370​
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]
10​
[/TD]
[TD]8001P[/TD]
[TD]
12345​
[/TD]
[TD]
12350​
[/TD]
[TD]
12382​
[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top