#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default concatenate problems

Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new cell,
all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default concatenate problems

hi
loose the double quotes.
=CONCATENATE(M2,K2,N2)

regards
FSt1

"Jeff" wrote:

Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new cell,
all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default concatenate problems

Thank you. That did it. (I was copying the example in the "Excel Help")

Jeff

FSt1 wrote:
hi
loose the double quotes.
=CONCATENATE(M2,K2,N2)

regards
FSt1

"Jeff" wrote:

Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new
cell, all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default concatenate problems

You did not copy the example correctly.

=CONCATENATE("Stream population for ",A2," ",A3," is ",A4,"/mile")

Note: no double quotes around cell references.


Gord Dibben MS Excel MVP

On Sat, 8 Dec 2007 11:47:18 -0500, "Jeff" wrote:

Thank you. That did it. (I was copying the example in the "Excel Help")


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default concatenate problems

Aha!

Gord Dibben wrote:
You did not copy the example correctly.

=CONCATENATE("Stream population for ",A2," ",A3," is ",A4,"/mile")

Note: no double quotes around cell references.


Gord Dibben MS Excel MVP

On Sat, 8 Dec 2007 11:47:18 -0500, "Jeff" wrote:

Thank you. That did it. (I was copying the example in the "Excel
Help")





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default concatenate problems

hi,
you're welcome.
and pete had some good ideas too. i just help with your immediate problem ie
what's wrong with this formula?

regards
FSt1

"Jeff" wrote:

Thank you. That did it. (I was copying the example in the "Excel Help")

Jeff

FSt1 wrote:
hi
loose the double quotes.
=CONCATENATE(M2,K2,N2)

regards
FSt1

"Jeff" wrote:

Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new
cell, all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default concatenate problems

On Dec 8, 12:30 pm, "Jeff" wrote:
Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new cell,
all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default concatenate problems

You can use the & operator instead of the function CONCATENATE (less
typing):

=M2 & K2 & N2

You can separate your text values by a comma and space like so:

=M2&", "&K2&", "&N2

Hope this helps.

Pete

On Dec 8, 12:30 pm, "Jeff" wrote:
Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new cell,
all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 23
Default concatenate problems

Thanks. Getting rid of the " did the trick.

Jeff

Pete_UK wrote:
You can use the & operator instead of the function CONCATENATE (less
typing):

=M2 & K2 & N2

You can separate your text values by a comma and space like so:

=M2&", "&K2&", "&N2

Hope this helps.

Pete

On Dec 8, 12:30 pm, "Jeff" wrote:
Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new
cell, all I get as a result is
M2K2N2 instead of the contents of these cells.

What am I doing wrong?

Thanks.

Jeff



  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default concatenate problems

You're welcome, Jeff - thanks for feeding back.

Pete

On Dec 8, 4:48 pm, "Jeff" wrote:
Thanks. Getting rid of the " did the trick.

Jeff



Pete_UK wrote:
You can use the & operator instead of the function CONCATENATE (less
typing):


=M2 & K2 & N2


You can separate your text values by a comma and space like so:


=M2&", "&K2&", "&N2


Hope this helps.


Pete


On Dec 8, 12:30 pm, "Jeff" wrote:
Hi
I'm using Excel 2002 and am trying to combine 3 cells containing text
into another cell using the formula:
=CONCATENATE("M2","K2","N2")
But instead of a combination of the 3 columns of text into the new
cell, all I get as a result is
M2K2N2 instead of the contents of these cells.


What am I doing wrong?


Thanks.


Jeff- Hide quoted text -


- Show quoted text -




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
concatenate every second row to first row Kelly E. Excel Discussion (Misc queries) 2 January 10th 06 04:25 PM
concatenate and then take off last # NTaylor Excel Discussion (Misc queries) 6 December 21st 05 06:04 PM
I know how to concatenate ,can one de-concatenate to split date? QUICK BOOKS PROBLEM- New Users to Excel 1 July 26th 05 05:07 PM
Un - Concatenate? JudithJubilee Excel Worksheet Functions 2 July 11th 05 09:57 AM
concatenate Christy Quesenbery via OfficeKB.com Excel Worksheet Functions 1 April 7th 05 08:09 PM


All times are GMT +1. The time now is 03:12 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"