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:
- write macro (yuck)
- manually copy / paste (yuck)
- maybe pivot table magic? (i doubt possible)
- clever formulas using
index
are there other solutions, maybe hidden built-in feature?
use of transpose() function
Comments
Post a Comment