A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

CONCATENATE error?



 
 
Thread Tools Display Modes
  #1  
Old March 26th, 2010, 05:40 PM posted to microsoft.public.excel.misc
Martin @nohere.net
external usenet poster
 
Posts: 241
Default CONCATENATE error?

Hi
in column C row 2 I have Mr & Mrs E.
in colum D row 2 I have McAllister
When I put the formula =CONCATENATE(D2,C2) in E2 I get
McAllisterMr & Mrs E.

How do I adjust the formula to get
McAllister Mr & Mrs E. ?
--
Martin


  #2  
Old March 26th, 2010, 06:31 PM posted to microsoft.public.excel.misc
Chip Pearson
external usenet poster
 
Posts: 1,343
Default CONCATENATE error?

The CONCATENATE function doesn't put any separators between the values
that are concatenated. You must include it yourself. Moreover, it is
easier to just use the '&' operator than the CONCATENATE function:

=CONCATENATE(D2," ",C2)
or
=D2 & " " & C2

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Fri, 26 Mar 2010 17:40:39 +0000, Martin @nohere.net wrote:

Hi
in column C row 2 I have Mr & Mrs E.
in colum D row 2 I have McAllister
When I put the formula =CONCATENATE(D2,C2) in E2 I get
McAllisterMr & Mrs E.

How do I adjust the formula to get
McAllister Mr & Mrs E. ?

  #3  
Old March 26th, 2010, 06:35 PM posted to microsoft.public.excel.misc
מיכאל (מיקי) אבידן
external usenet poster
 
Posts: 562
Default CONCATENATE error?

Maybe: =D2&" "&C2
Micky


"Martin ©¿©¬ @nohere.net" wrote:

Hi
in column C row 2 I have Mr & Mrs E.
in colum D row 2 I have McAllister
When I put the formula =CONCATENATE(D2,C2) in E2 I get
McAllisterMr & Mrs E.

How do I adjust the formula to get
McAllister Mr & Mrs E. ?
--
Martin
©¿©¬

.

  #4  
Old March 26th, 2010, 06:36 PM posted to microsoft.public.excel.misc
T. Valko
external usenet poster
 
Posts: 15,759
Default CONCATENATE error?

Try it like this...

=D2&" "&C2

Which is the same as:

=CONCATENATE(D2," ",C2)

But why do all that extra typing! g

--
Biff
Microsoft Excel MVP


Martin @nohere.net wrote in message
...
Hi
in column C row 2 I have Mr & Mrs E.
in colum D row 2 I have McAllister
When I put the formula =CONCATENATE(D2,C2) in E2 I get
McAllisterMr & Mrs E.

How do I adjust the formula to get
McAllister Mr & Mrs E. ?
--
Martin




  #5  
Old March 26th, 2010, 07:10 PM posted to microsoft.public.excel.misc
Suew
external usenet poster
 
Posts: 48
Default CONCATENATE error?

=CONCATENATE(C2,D2)

"Martin ©¿©¬ @nohere.net" wrote:

Hi
in column C row 2 I have Mr & Mrs E.
in colum D row 2 I have McAllister
When I put the formula =CONCATENATE(D2,C2) in E2 I get
McAllisterMr & Mrs E.

How do I adjust the formula to get
McAllister Mr & Mrs E. ?
--
Martin
©¿©¬

.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


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


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