Say I have a data series going from A1 to E1. I would like to make a second copy of these cells going vertically, for instance from G1-G5. I can achieve what I want just by typing =A1 into G1, =B1 into G2 and so on. However, I have in mind a situation in which this needs to be done with a larger data series. I'm keen to economize on keystrokes if I can.
Is there a way to use Fill or some other command to achieve this?
2 Answers
You can use a formula, e.g. in G1 copied down to G5
=INDEX(A$1:E$1,ROWS(G$1:G1))
Paste Special-Transpose should work for you.
Here is an example of what this does (which is exactly what you are looking for)
Edit
I think you are looking for this trick -
- Select G1-G5.
- In the formula bar (you know the one that shows you the formula instead of the value), type in =Transpose(A1:E1) and usectrl+shift+enter to complete your edit.
Cheers.
2