inserting a space in Concatenation

  • Thread starter Thread starter Gordon
  • Start date Start date
G

Gordon

I have two columns of text to concatenate. I want to
insert a space between the two strings. How do i do this?
 
Hi Gordon

option 1
=CONCATENATE(A1," ",B1)

option 2
=A1 & " " & B1

PS any text can be concatenated using either method as long as its enclosed
in " "

Cheers
JulieD
 
-----Original Message-----
I have two columns of text to concatenate. I want to
insert a space between the two strings. How do i do this?
.

Thanks for the fast info guys!
 
Back
Top