Transpose

G

Guru Dandur

Is there a formula that i can use instead of transpose option? I would like
to display column-data by row-wise in a different sheet.

Thanks,
 
D

Domenic

Assuming that Column A of Sheet 1 contains your data, and each record is
made up of six rows, such as...

Jack
Jack1
Jack2
Jack3
Jack4
Jack5
John
John1
John2
John3
John4
John5

....and you want to transpose the data as follows...

Jack Jack1 Jack2 Jack3 Jack4 Jack5
John John1 John2 John3 John4 John5

....on your other sheet, enter the following formula, copy across five
columns and down until you get zeros:

=OFFSET(Sheet1!$A$1,ROW(1:1)*6-6+COLUMN(B:B)-COLUMN($B$1),0)

Hope this helps!
 
G

Guru Dandur

Thanks, it works...

Domenic said:
Assuming that Column A of Sheet 1 contains your data, and each record is
made up of six rows, such as...

Jack
Jack1
Jack2
Jack3
Jack4
Jack5
John
John1
John2
John3
John4
John5

...and you want to transpose the data as follows...

Jack Jack1 Jack2 Jack3 Jack4 Jack5
John John1 John2 John3 John4 John5

...on your other sheet, enter the following formula, copy across five
columns and down until you get zeros:

=OFFSET(Sheet1!$A$1,ROW(1:1)*6-6+COLUMN(B:B)-COLUMN($B$1),0)

Hope this helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top