Converting 'vertical' address list to 'horizontal'

kgarry1

New Member
Joined
Mar 10, 2002
Messages
1
I have a sheet full of addresses formatted vertically:

A1: Company1 Name
A2: Company1 Address
A3: Company1 City, Zip

A6: Company2 Name
A7: Company2 Address
A8: Company2 City, Zip

I want to show this data horizontally:
A1: Company1 Name
B1: Company1 Address
C1: Company1 City, Zip

A2: Company2 Name
B2: Company2 Address
C2: Company2 City, Zip

I can do this easily for 1 address, but my data source includes over 1000 addresses. I'm unable to get the cell references to offset beyond the 1st record.

Any ideas?
Thanks in advance...
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
If your data is uniform (each company consisting of 5 lines) then your can put these formulas in adjacent columns, starting at row 1:

=OFFSET($A$1,5*ROW()-5,0)
=OFFSET($A$1,5*ROW()-4,0)
=OFFSET($A$1,5*ROW()-3,0)

and copy down.
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,655
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top