1

For example the data looks like this:

Name: A
Number: 1
Type: X
Name: B
Number: 2
Type: Y
Name: C
Number: 3
Type: Z

And I want to convert it into this format:

Name     Number     Type
A         1          X
B         2          Y
C         3          Z

1 Answers1

0

In Excel:

  1. Select the data you want to transpose
  2. CTRL-C to copy
  3. Right click on the cell you want to put the data in
  4. Click paste special
  5. Check the box that says "Transpose"
  6. Click ok.

Reference: http://www.howtogeek.com/howto/12366/convert-a-row-to-a-column-in-excel-the-easy-way/

Eric
  • 101