Concatenate strings?

A

Alain Dekker

Simple question:

I have:
"Fred" in A1
"loves" in B1
"chocolate" in C1

How do I set up a formula (like A1+B1+C1) do that in D1 I get "Fred loves
chocolate"? Is there any way to add sapces in the formula, maybe A1+" "+B1+"
"+C1? I've tried all of the above, without success.

I'm using Excep 97.

Thanks,
Alain
 
R

Raz Boyarski

I'm not sure if this function exists in Excel 97 but in 2003 it does.

try inserting in cell D1 the formula: =Concatenate(A1,B1,C1)

if it doesn't work, try typing:

=A1 & " " & B1 & " " & C1
 
J

Joe User

Raz Boyarski said:
try inserting in cell D1 the formula: =Concatenate(A1,B1,C1) if it doesn't
work, try typing:
=A1 & " " & B1 & " " & C1

CONCATENATE(A1,B1,C1) is equivalent to A1&B1&C1, not what you wrote.


----- original message -----
 

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


Top