Transpose data from rows to columns

yxz152830

Active Member
Joined
Oct 6, 2021
Messages
393
Office Version
  1. 365
Platform
  1. Windows
Gurus,
I have a data set that looks like this:


A
1​
A
2​
A
3​
B
1​
B
2​
C
1​
C
2​
C
3​
C
4​

I'm hoping to convert the set to this:



A
1​
2​
3​
B
1​
2​
C
1​
2​
3​
4​

is there a way to do it without VBA?
Thanks in advance!
 
Another option with a formula
Fluff.xlsm
ABCDEFGH
1
2A1A123
3A2B12
4A3C1234
5B1
6B2
7C1
8C2
9C3
10C4
Sheet6
Cell Formulas
RangeFormula
D2:D4D2=UNIQUE(A2:A10)
E2:G2,E4:H4,E3:F3E2=TOROW(FILTER($B$2:$B$10,$A$2:$A$10=D2))
Dynamic array formulas.
Yes sorry it's working! thanks for the solution!
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,108
Messages
6,123,134
Members
449,098
Latest member
Doanvanhieu

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