• 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.

Extracting Data from a column to a Row

Sheela

New Member
Hello,
I have data arranged in a column (Sheet1), starting Column B3, the next data is in Column G3, L3, Q3, and so on (every fourth row). I have a very long row of data.
I want to be able to extract this data in Sheet2 column F, row2 and be in a consecutive order. What formula will work. Please help...
Thanks
Regards,
Sheela
 

Attachments

  • Question-Column to Row-July29-2015.xlsx
    8.5 KB · Views: 0
Hi Sheela,

Please see attached.

Code:
=INDEX(Sheet1!$A$3:$W$3,,(ROWS($A$2:$A2)*5)-3)

The ROWS($A$2:$A2) is simply to result in 1 on the first row, and add 1 for each row you copy down.

The 3 is to offset the starting position.
 

Attachments

  • Question-Column to Row-July29-2015.xlsx
    8.8 KB · Views: 0
Back
Top