Converting lists to tables

G

Guest

I have a list of addresses that I should like to convert to a table, they
each contain 4 fields, as follows:

John Doe
123 Street
Anywhere
Anytown
Bill Bloggs
456 Road
Somewhere
Someplace

I should like to convert these names to:

John Doe 123 Street Anywhere Anytown
Bill Bloggs 456 Road Somewhere Someplace

The list contains several hundred names and addresses so idealy I would like
an easier way to do this that repetitive cut and paste.
 
G

Gord Dibben

Paul

Assuming the list is in column A.......

In B1 enter =INDEX($A:$A,(ROWS($1:1)-1)*4+COLUMNS($A:B)-1)

Copy across to E1 then copy B1:E1 down until you get 0's


Gord Dibben MS Excel MVP
 
O

Otto Moehrbach

Paul
Does each address cover 4 cells? If not, is there something somewhere
to distinguish the end of one address and the start of another? HTH Otto
 
G

Guest

Thanks Gord - works perfectly

Gord Dibben said:
Paul

Assuming the list is in column A.......

In B1 enter =INDEX($A:$A,(ROWS($1:1)-1)*4+COLUMNS($A:B)-1)

Copy across to E1 then copy B1:E1 down until you get 0's


Gord Dibben MS Excel MVP
 
G

Guest

Hi Otto,

Yes all addresses cover 4 cells. Gord's reply has given me a solution.

Thank you for answering,

Paul
 

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