G Gordon Mar 15, 2004 #1 I have two columns of text to concatenate. I want to insert a space between the two strings. How do i do this?
I have two columns of text to concatenate. I want to insert a space between the two strings. How do i do this?
J JulieD Mar 15, 2004 #2 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
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
A Andy B Mar 15, 2004 #5 Gordon If you want to stick to using CONCATENATE, try: =CONCATENATE(A1," ",A2) Andy.
G Gordon Mar 15, 2004 #7 -----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? . Click to expand... Thanks for the fast info guys!
-----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? . Click to expand... Thanks for the fast info guys!