Advertisement
zilexa

EXCEL copy entire table to one single column

Feb 23rd, 2016
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. EXCEL copy entire table to one single column
  2. ============================================
  3.  
  4. 1. select all table data (no headers).
  5. 2. right click and select "define name" in the context menu.
  6. 3. give it a name, for example "MyData".
  7. 4. select an empty cell in the column where you need the data and paste the following formula:
  8. =INDEX(MyData,1+INT((ROW(A1)-1)/COLUMNS(MyData)),MOD(ROW(A1)-1+COLUMNS(MyData),COLUMNS(MyData))+1)
  9.  
  10. NOTE: make sure the formula contains the correct name you defined.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement