Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
concatenate every second row to first row | Excel Discussion (Misc queries) | |||
concatenate and then take off last # | Excel Discussion (Misc queries) | |||
I know how to concatenate ,can one de-concatenate to split date? | New Users to Excel | |||
Un - Concatenate? | Excel Worksheet Functions | |||
concatenate | Excel Worksheet Functions |