Converting rows to columns on a large scale

G

Guest

I have a workbook of names and addresses. All information is in column A...

John Doe
111 5th st.
New York, NY
Joe Smith
1st St. E
Chicago, IL

etc.

I want to convert this entire workbook to column form as follows,

John Doe 111 5th St New York, NY
Joe Smith 1st St. E Chicago, IL

Is there a way for me to do this without using "Paste Special" and
"Transpose" for each individual entry.....or tediously moving each entry one
by one?

bootsy
 
D

Dave Peterson

If the layout is always 3 rows per address, you can put this in B1 and copy to
the right. Then copy down (until you run out of data)

=INDEX($A:$A,MOD(COLUMN()-2,3)+1+(ROW()-1)*3)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top