Concatenate

G

Guest

When I concatenate text from two cells, the texts get joined together. i want
to insert a space between the two text strings. Any ideas?
 
G

Guest

Assuming source data in A1 and B1,
In C1: =A1&" "&B1

Or, perhaps better with a TRIM to remove any possible extraneous white
spaces in the source data, in C1: =TRIM(A1&" "&B1)
 
G

Guest

Thank you, Max. It worked perfectly!

Max said:
Assuming source data in A1 and B1,
In C1: =A1&" "&B1

Or, perhaps better with a TRIM to remove any possible extraneous white
spaces in the source data, in C1: =TRIM(A1&" "&B1)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Concatenate with hyphens 4
Concatenation 3
Generating Functions with "Concatenate" 2
Text Function 1
inserting a space in Concatenation 6
Concatenate function 2
Concatencation and formatting 17
Concatenate Function 1

Top