Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
BCLivell
 
Posts: n/a
Default Data from Rows into columns

I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!

  #2   Report Post  
Posted to microsoft.public.excel.misc
Alan Beban
 
Posts: n/a
Default Data from Rows into columns

If the functions in the freely downloadable file at
http//home.pacbell.net/beban are available to your workbook

=ArrayReshape(A1:A300,100,3) array entered into B1:D100

Alan Beban

BCLivell wrote:
I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!

  #3   Report Post  
Posted to microsoft.public.excel.misc
Ronco
 
Posts: n/a
Default Data from Rows into columns

BC,
Try highlighting column A. Then from the top menus, select Data, Text to
Columns, delimited, Next and, then, depending on whatever is separating the
info, select the delimiter. Then Finish.


"BCLivell" wrote:

I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!

  #4   Report Post  
Posted to microsoft.public.excel.misc
Rae Drysdale
 
Posts: n/a
Default Data from Rows into columns

You can copy the cells and the use paste special and click on transpose at
the bottom of the dialogue box. You cannot overlap the paste, ie when you
want to paste A1, A2 and A3, you will have to click on B1 rather than A1. You
may need to insert columns to achieve this easily, and then delete the first
column when you are finished. Hope this helps.
--
Rae Drysdale


"Alan Beban" wrote:

If the functions in the freely downloadable file at
http//home.pacbell.net/beban are available to your workbook

=ArrayReshape(A1:A300,100,3) array entered into B1:D100

Alan Beban

BCLivell wrote:
I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!


  #5   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Data from Rows into columns

Hi!

Try this:

Assume you want to transpose this data to a new sheet starting in cell A1:

Enter this formula in the new sheet cell A1:

=INDEX(Sheet1!$A:$A,(ROWS($1:1)-1)*3+COLUMN())

Copy across to C1 then down until you get returns of 0.

Biff

"BCLivell" wrote in message
...
I have an excel worksheet that someone provide me. All of the information
is
in 1 column (A) with each row having the person's contact info. The
pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an
another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!





  #6   Report Post  
Posted to microsoft.public.excel.misc
BCLivell
 
Posts: n/a
Default Data from Rows into columns

Alan-

How d you incorperate the functions form your file?

"Alan Beban" wrote:

If the functions in the freely downloadable file at
http//home.pacbell.net/beban are available to your workbook

=ArrayReshape(A1:A300,100,3) array entered into B1:D100

Alan Beban

BCLivell wrote:
I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!


  #7   Report Post  
Posted to microsoft.public.excel.misc
simonsmith
 
Posts: n/a
Default Data from Rows into columns


Creat a new column and put 1 in a1, 2 in a2, 3 in a3 and repeat by
pasting down the column.Result you should have a 1 beside names a 2
beside phones numbers etc. Then in adjacent columns put in an IF
formula to get your data out eg. =if(A1=1,A2,"") this could be in your
B column and will provide you with your name. In Column C you could put
=if(A1=2,A2,"") this will get the addresses etc. drag all your formulas
down to you get all your data the way you want it then copy paste
special , values to get rid of your formulas (if desired) Hope this
helps

Simonsmith


--
simonsmith
------------------------------------------------------------------------
simonsmith's Profile: http://www.excelforum.com/member.php...o&userid=34235
View this thread: http://www.excelforum.com/showthread...hreadid=539949

  #8   Report Post  
Posted to microsoft.public.excel.misc
Alan Beban
 
Posts: n/a
Default Data from Rows into columns

One way, after you have downloaded them into a file on your hard drive,
is to copy the file into your Personal.xls file.

Alan Beban

BCLivell wrote:
Alan-

How d you incorperate the functions form your file?

"Alan Beban" wrote:

If the functions in the freely downloadable file at
http//home.pacbell.net/beban are available to your workbook

=ArrayReshape(A1:A300,100,3) array entered into B1:D100

Alan Beban

BCLivell wrote:
I have an excel worksheet that someone provide me. All of the information is
in 1 column (A) with each row having the person's contact info. The pattern
repeats for each contact. The pattern like this

A1-Company name
A2-Name
A3-phone

There are 100 contacts in this format. I need to seperate all of the
information so that the comany name is one column and the name is an another
column and the phone is in a third column. I can not figure out how to do
this. Thank you!!!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can I rotate data in Excel table (rows to columns, and vv)? Marcus Ricci Excel Discussion (Misc queries) 6 July 14th 08 05:11 PM
text data in one column many rows to many columns one row MoniqueL Excel Discussion (Misc queries) 1 March 14th 06 11:17 AM
How to swap rows and columns? [email protected] Excel Discussion (Misc queries) 5 September 21st 05 09:07 AM
Putting data into pivot tables in columns not rows. ACP Excel Discussion (Misc queries) 1 August 24th 05 02:18 PM
extract data from a range of cells in rows or columns when a date. Dartyon Excel Worksheet Functions 0 February 24th 05 11:37 PM


All times are GMT +1. The time now is 05:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"