• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

transpose single column into multiple rows with single copy and paste

odonnell

New Member
Hello,


I need to reformat (transpose) a column of values by breaking it up into multiple rows. I'd like to do this with a single copy and paste. Below is a link to an example. For example, if I have a column of values in A1-A6, I need to transpose values A1 and A2 to C1 and D1. Then i need to transpose A3 and A4 to C2 and D2, then i need to transpose A5 and A6 to C3 and D3.


https://docs.google.com/spreadsheet/pub?hl=en_US&hl=en_US&key=0Alus9pZZR1XOdGRPVHY1c3JwTHFSd0FJRGVjYjhGVnc&output=html


If I can't do this by a single copy and paste, is there any other way by enabling some type of script that execute multiple copy and paste commands?


Many many thanks for any advice.
 
ODonnell


Firstly, Welcome to the Chandoo.org Forums


Try:

C1: =OFFSET($A$1,2*(ROW()-1),0)

D1: =OFFSET($A$1,2*(ROW())-1,0)

Copy down
 
Back
Top