How to transpose repeating groups in Excel

3

1

How would I transpose repeating rows and columns in Excel. For example how would I transpose the repeating pattern of rows (Tan color) to repeating columns (Purple). Would I need to do this in VBA and are there some built in functions. Actual worksheet has 8,000 rows which need to be transposed.

enter image description here

Jeff

Posted 2015-08-24T18:32:26.727

Reputation: 195

How do I transpose data in columns to rows? might get you started. – DavidPostill – 2015-08-24T18:42:29.437

Does the original data have a constant number of rows in each group? In that case, the OFFSET function, using (pseudocode): row = fixed_heigth * target_column and column = row modulo fixed_height. Let us know what you have tried and where you are stuck. – agtoever – 2015-08-25T07:26:56.757

@agtoever would you please elaborate your comment as an answer? I'm also interested in the solution. From what I understand, yes, it does have a constant number of rows in each group. – Lucas Pottersky – 2016-01-22T17:26:49.913

Answers

1

This one's for you, @LucasPottersky

If you have the tan data and you want to transpose it to the purple data, here is a formula by which you may do that. This formula only works because the specific example in OP's question has repeating data. If your data does not repeat, this will not work for you.

=INDEX($B$2:$D$16,MATCH(G$1,$G$1:$K$1,0),MATCH($F2,$B$1:$D$1,0))

$B$2:$D$16 is the range containing all the tan data but not the headers.

MATCH(G$1,$G$1:$K$1,0) returns the row we want

MATCH($F2,$B$1:$D$1,0) returns the column we want

You'll have to manually copy / paste the headers and the formula for as many rows as is needed.

Engineer Toast

Posted 2015-08-24T18:32:26.727

Reputation: 3 019