Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default combining column contents ?

In Excel 2003...I have three long columns A , B , & C. Some of the
individual cells contain text...some don't. Is there a way to combine these
columns into column A without losing the text that now exist in column A ?
Here's what I have:
Col A Col B ColC
Bob & Mary
Bill
etc

When done I would like:

Col A Col B ColC
Bob & Mary
Bill

Thanks, Tim R



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default combining column contents ?

Is there a possibility there might be data in Column C and *no* data in
ColumnB?


--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Tim" wrote in message
...
In Excel 2003...I have three long columns A , B , & C. Some of the
individual cells contain text...some don't. Is there a way to combine
these columns into column A without losing the text that now exist in
column A ?
Here's what I have:
Col A Col B ColC
Bob & Mary
Bill
etc

When done I would like:

Col A Col B ColC
Bob & Mary
Bill

Thanks, Tim R





  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default combining column contents ?

Yes...there is always data in A...but there may or may not be data in B & C
I'm trying to get the concatenate formula to work but so far no go...here's
what I have now
=CONCATENATE(I8," ",J8," ",K8)
not sure tho if this is to be put into an adjoining empty column or in the
column that will be the finished data above in column I or in my
exempla...column A ?


"RagDyer" wrote in message
...
Is there a possibility there might be data in Column C and *no* data in
ColumnB?


--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Tim" wrote in message
...
In Excel 2003...I have three long columns A , B , & C. Some of the
individual cells contain text...some don't. Is there a way to combine
these columns into column A without losing the text that now exist in
column A ?
Here's what I have:
Col A Col B ColC
Bob & Mary
Bill
etc

When done I would like:

Col A Col B ColC
Bob & Mary
Bill

Thanks, Tim R







  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,572
Default combining column contents ?

Try this:

Insert a *new* Column I *temporarily*.

In the new I8, enter:

=IF(AND(J8<"",K8="",L8=""),J8,IF(K8="",J8&" "&L8,TRIM(J8&" "&K8&" "&L8)))

And copy down as needed.

To remove the text formulas and leave just the data behind,
select the cells in Column I that you copied this formula to, and right
click in the selection.
Choose "Copy",
And right click again in the selection, and click on "Paste Special",
Then click on "Values", then <OK, then hit <Esc.

If you wish, you can now delete Column J (*old* Column I), and have your old
configuration back, with the revised data in the new Column I.

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Tim" wrote in message
...
Yes...there is always data in A...but there may or may not be data in B &
C
I'm trying to get the concatenate formula to work but so far no
go...here's what I have now
=CONCATENATE(I8," ",J8," ",K8)
not sure tho if this is to be put into an adjoining empty column or in the
column that will be the finished data above in column I or in my
exempla...column A ?


"RagDyer" wrote in message
...
Is there a possibility there might be data in Column C and *no* data in
ColumnB?


--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Tim" wrote in message
...
In Excel 2003...I have three long columns A , B , & C. Some of the
individual cells contain text...some don't. Is there a way to combine
these columns into column A without losing the text that now exist in
column A ?
Here's what I have:
Col A Col B ColC
Bob & Mary
Bill
etc

When done I would like:

Col A Col B ColC
Bob & Mary
Bill

Thanks, Tim R









  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default combining column contents ?

Thanks much....I will use this often in my projects...is there a way to
'store' this function in a user functions type part of Excel...so I don't
have to cut/past all the time when I use this (these) ?

"RagDyer" wrote in message
...
Try this:

Insert a *new* Column I *temporarily*.

In the new I8, enter:

=IF(AND(J8<"",K8="",L8=""),J8,IF(K8="",J8&" "&L8,TRIM(J8&" "&K8&" "&L8)))

And copy down as needed.

To remove the text formulas and leave just the data behind,
select the cells in Column I that you copied this formula to, and right
click in the selection.
Choose "Copy",
And right click again in the selection, and click on "Paste Special",
Then click on "Values", then <OK, then hit <Esc.

If you wish, you can now delete Column J (*old* Column I), and have your
old configuration back, with the revised data in the new Column I.

--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Tim" wrote in message
...
Yes...there is always data in A...but there may or may not be data in B &
C
I'm trying to get the concatenate formula to work but so far no
go...here's what I have now
=CONCATENATE(I8," ",J8," ",K8)
not sure tho if this is to be put into an adjoining empty column or in
the column that will be the finished data above in column I or in my
exempla...column A ?


"RagDyer" wrote in message
...
Is there a possibility there might be data in Column C and *no* data in
ColumnB?


--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit
!
---------------------------------------------------------------------------
"Tim" wrote in message
...
In Excel 2003...I have three long columns A , B , & C. Some of the
individual cells contain text...some don't. Is there a way to combine
these columns into column A without losing the text that now exist in
column A ?
Here's what I have:
Col A Col B ColC
Bob & Mary
Bill
etc

When done I would like:

Col A Col B ColC
Bob & Mary
Bill

Thanks, Tim R











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
Combining Cell Contents Storm Excel Worksheet Functions 4 April 14th 07 04:42 AM
Combining Cell Contents - entire columns SV Excel Worksheet Functions 7 December 11th 06 11:30 PM
Combining cell contents when there is content to combine Richard Excel Discussion (Misc queries) 2 June 21st 06 07:30 PM
Combining Row Contents! via135 Excel Worksheet Functions 4 January 19th 06 05:35 PM
move contents of column C based on criteria related to column A Debra Excel Discussion (Misc queries) 2 December 27th 05 10:25 PM


All times are GMT +1. The time now is 09:13 AM.

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

About Us

"It's about Microsoft Excel"