Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default how do I unmerge data in a column and distribute in rows?

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 169
Default how do I unmerge data in a column and distribute in rows?

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default how do I unmerge data in a column and distribute in rows?

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default how do I unmerge data in a column and distribute in rows?

Enter this formula in D1 and copy across to F1

=INDEX($C:$C,(ROWS($1:1)-1)*3+COLUMNS($C:D)-1)

Select D1:F1 and copy down untill you get zeros showing up.

When happy, paste special as values then delete column C


Gord Dibben MS Excel MVP


On Thu, 7 Aug 2008 14:57:00 -0700, Mike
wrote:

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default how do I unmerge data in a column and distribute in rows?

Thank you

"Gord Dibben" wrote:

Enter this formula in D1 and copy across to F1

=INDEX($C:$C,(ROWS($1:1)-1)*3+COLUMNS($C:D)-1)

Select D1:F1 and copy down untill you get zeros showing up.

When happy, paste special as values then delete column C


Gord Dibben MS Excel MVP


On Thu, 7 Aug 2008 14:57:00 -0700, Mike
wrote:

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default how do I unmerge data in a column and distribute in rows?

THe formula fills perfectly but by itself. When I delete the source column
however I end up with #REF error. How do I do the paste special function
since the formula acts on its own without a copy action?

"Gord Dibben" wrote:

Enter this formula in D1 and copy across to F1

=INDEX($C:$C,(ROWS($1:1)-1)*3+COLUMNS($C:D)-1)

Select D1:F1 and copy down untill you get zeros showing up.

When happy, paste special as values then delete column C


Gord Dibben MS Excel MVP


On Thu, 7 Aug 2008 14:57:00 -0700, Mike
wrote:

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,101
Default how do I unmerge data in a column and distribute in rows?


Never mind I figured it out. I copied the section to another sheet and
pasted special. Thnak you thisa has saved me hours of work.
"Gord Dibben" wrote:

Enter this formula in D1 and copy across to F1

=INDEX($C:$C,(ROWS($1:1)-1)*3+COLUMNS($C:D)-1)

Select D1:F1 and copy down untill you get zeros showing up.

When happy, paste special as values then delete column C


Gord Dibben MS Excel MVP


On Thu, 7 Aug 2008 14:57:00 -0700, Mike
wrote:

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default how do I unmerge data in a column and distribute in rows?

You can copypaste special in place should you choose.

But you found a workaround.


Gord

On Fri, 8 Aug 2008 05:27:00 -0700, Mike
wrote:


Never mind I figured it out. I copied the section to another sheet and
pasted special. Thnak you thisa has saved me hours of work.
"Gord Dibben" wrote:

Enter this formula in D1 and copy across to F1

=INDEX($C:$C,(ROWS($1:1)-1)*3+COLUMNS($C:D)-1)

Select D1:F1 and copy down untill you get zeros showing up.

When happy, paste special as values then delete column C


Gord Dibben MS Excel MVP


On Thu, 7 Aug 2008 14:57:00 -0700, Mike
wrote:

They aren't I have a street address in C1, a city state and zip and c2 and a
phone number in c3. The sequence then repeats itself. I obviously can copy
the three cells and paste special and then transpose them and get them lined
up. Then I neeed to delete the originals and cut and paste to get in proper
sequence. What I am looking for is a more efficent way of doing the steps
noted above.

"M Kan" wrote:

If they're delimited in a consistent fashion, you can use the Text to Column
function to parse them out. Go to Data: Text to Column and you have the
options of parsing by delimiter or by fixed width.
--
Tips for Excel, Word, PowerPoint and Other Applications
http://www.kan.org/tips


"Mike" wrote:

I have data from an address base that when cut and pasted gourped or merged
three cells. I would like to unmerge them and distribute the information from
3 cells in a column to three cells in a row. I have 1400 addresses, so doing
this manually is not logical. The "unmerge" command does not do anything.




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
distribute rows from one workbook to other workbooks JD Excel Discussion (Misc queries) 3 November 14th 07 02:21 PM
distribute data to every other cell mikeweasel Excel Discussion (Misc queries) 2 March 30th 07 08:08 PM
How to randomely distribute non-numerical values across rows? Dimmer Excel Worksheet Functions 3 June 30th 05 08:26 AM
UNMERGE two cells/rows in Excel Larry D. Excel Discussion (Misc queries) 1 January 28th 05 09:00 PM
Can I Distribute Excel reports that retrieve Data-On-The-Fly ... Bob Excel Discussion (Misc queries) 3 December 3rd 04 06:36 AM


All times are GMT +1. The time now is 04:30 PM.

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"