Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have an Excel sheet that has 8000+ rows that include contact information.
I'd like to move them from all of those rows into 6 columns. Currently it lookzs like: name title company address city/state/zip phone .... .... .... And I'd like to create a formula to move it to 6 columns that look like this: name title company address city/state/zip phone I'm still an Excel novice but would appreciate any suggestions you might have. Thanks! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You will need VBA code to get this done. If you would like I could whip up a
code for you if your willing to send me a copy of your workbook? "TR53" wrote: I have an Excel sheet that has 8000+ rows that include contact information. I'd like to move them from all of those rows into 6 columns. Currently it lookzs like: name title company address city/state/zip phone ... ... ... And I'd like to create a formula to move it to 6 columns that look like this: name title company address city/state/zip phone I'm still an Excel novice but would appreciate any suggestions you might have. Thanks! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If your information is in column A starting in A1 then in cell B1 enter
=INDIRECT("A"&((ROW()-1)*6)+1) copy this down column B to give all "names". In cell C1 enter =INDIRECT("A"&((ROW()-1)*6)+2) copy this down column C for all the "titles" etc. etc. just increase the last nuber by 1 as you go across your 6 columns Regards Steve "TR53" wrote: I have an Excel sheet that has 8000+ rows that include contact information. I'd like to move them from all of those rows into 6 columns. Currently it lookzs like: name title company address city/state/zip phone ... ... ... And I'd like to create a formula to move it to 6 columns that look like this: name title company address city/state/zip phone I'm still an Excel novice but would appreciate any suggestions you might have. Thanks! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming column A with consistent sets of data........six cells to a set.
In B1 enter =INDEX($A:$A,(ROWS($1:1)-1)*6+COLUMNS($A:B)-1) Copy across to G1 Select B1:G1 and copy down until you get zeros. Gord Dibben MS Excel MVP On Fri, 4 Jun 2010 12:34:38 -0700, TR53 wrote: I have an Excel sheet that has 8000+ rows that include contact information. I'd like to move them from all of those rows into 6 columns. Currently it lookzs like: name title company address city/state/zip phone ... ... ... And I'd like to create a formula to move it to 6 columns that look like this: name title company address city/state/zip phone I'm still an Excel novice but would appreciate any suggestions you might have. Thanks! |
#5
![]() |
|||
|
|||
![]() Quote:
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
move data from columns to rows | Excel Worksheet Functions | |||
How to move data from rows to columns | Excel Discussion (Misc queries) | |||
Move Rows to Columns | Excel Discussion (Misc queries) | |||
Move Data from rows to columns... | Excel Worksheet Functions | |||
Move rows to columns | Excel Worksheet Functions |