concatenate problems

J

Jeff

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
 
P

Pete_UK

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
 
P

Pete_UK

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
 
G

Gord Dibben

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
 
F

FSt1

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
 
J

Jeff

Aha!

Gord said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top