Record sorting

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Hi
I have a list in one col. of name (new line) address(new line) phone number
(new line) blank line

John Smith
15 Green St
555 8560

Bill Brown
etc.

Question
Can I sort these four line records into four cols. so all the names and
addresses and phone numbers are in individual cols?

Many thanks
Stephen West
Gold Coast, Australia
 
One way:

Put this into a second sheet. Assume that the names in Sheet1 start in
cell A1:

A1: =INDEX(Sheet1!$A:$A,(ROW()-1)*4+COLUMN())

Copy it across to C1, then copy A1:C1 down as far as required.

You can then select columns A:C, Copy them, and choose Edit/Paste
Special, selecting the Values radio button to convert the formulae into
constants.
 
Many thanks it works exactly the way I Wanted!

JE McGimpsey said:
One way:

Put this into a second sheet. Assume that the names in Sheet1 start in
cell A1:

A1: =INDEX(Sheet1!$A:$A,(ROW()-1)*4+COLUMN())

Copy it across to C1, then copy A1:C1 down as far as required.

You can then select columns A:C, Copy them, and choose Edit/Paste
Special, selecting the Values radio button to convert the formulae into
constants.
 

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

Similar Threads

Sorting 1
Move data 2
Preserve format, right tab using concatenate 1
Word Create a Phone Book using MailMerge in word 2007 0
Remove blank n dupilicate record 1
Sorting by Content 5
Symbol Hyperlink 1
Hep with Find and Replace 16

Back
Top