How to rotate excel data -


this general question popped head have wondered. there have been several times when i've needed rotate data in excel, example:

starting with:

   |   |  b  |  c  | ----------------------  1 | abc | def | ghi | ----------------------  2 | omg | lol | xyz | ----------------------  3 |     |     |     | ---------------------- 

transform into:

   |   |  b  |  c  | ----------------------  1 | abc | omg |     | ----------------------  2 | def | lol |     | ----------------------  3 | ghi | xyz |     | ---------------------- 

i have never found reasonable way this. solutions can think of right are:

  1. write macro (yuck)
  2. manually copy / paste (yuck)
  3. maybe pivot table magic? (i doubt possible)
  4. clever formulas using index

are there other solutions, maybe hidden built-in feature?

use of transpose() function


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -