=concatenate With A Space

N

nander

How do I concatenate Cell B3 & C3 and have a space between the values i
B3 & C3?

B3 C3
423 "CHANGE-OVER" ADAPTOR

=CONCATENATE(B3,C3) 423"CHANGE-OVER" ADAPTOR

I'd like a space between them 423 "CHANGE-OVER" ADAPTO
 
B

Bob Phillips

=B3&" "&C3

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
D

dominicb

Good afternoon Nander

There are two possible ways of handling this:

=CONCATENATE(B3," ",C3)
=C3&" "&D3

Both will do the same thing.

HTH

Dominic
 
Top