Formula to combine text?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Greetings. I need a little help. Is it possible to combine text from to
different cells together with a formula? Example: A1 = My name B1 = is
Will, and I want C1 to say My name is Will. Is this possible? Thanks in
advance for any help.
 
Greetings. I need a little help. Is it possible to combine text from to
different cells together with a formula?
=A1&B1

=A1&" "&B1
=A1&" "&B1&" Smith"
etc. etc. etc.

arno
 
Read up the function CONCATENATE()


coal_miner said:
Greetings. I need a little help. Is it possible to combine text from
to
different cells together with a formula? Example: A1 = My name B1 =
is
Will, and I want C1 to say My name is Will. Is this possible? Thanks
in
advance for any help.
 
Another way to do the same thing is

=A1&B1

But in either case, you need either a trailing space in A1 or a leading
space in B1 to keep it from reading "My nameis Will"

or, you can do it in the formula, as:

=A1&" "&B1

Vaya con Dios,
Chuck, CABGx3
 

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

Back
Top