combining two cells

  • Thread starter Thread starter Norman Jones
  • Start date Start date
This is called (string) concatenation. In Excel and VB, the ampersand (&) is
the string concatenation operator. Excel also has a concatenation function.

=CONCATENATE(A1,"",B1)
 
I was wondering if there was a way to combine 2 cells. For example;

cell a1 contains 23 and cell b1 contains Yonge st. I want to combine the
two cells in cell m1 so I have 23 Yonge St.

Is there a way to do this? Any help is appreciated. Thanks.
 
Clement:

If your data in column A is formatted as numbers you may need to do
something like:

Text(A1,"00000") & " " & B1

"Pigs can't be humans, but humans can be Pigs!"

Eating at the trough of life.

Oink!

SowBelly
 

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