View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Kilmer Bob Kilmer is offline
external usenet poster
 
Posts: 280
Default combining two cells

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)

"Clement DeCastro" wrote in message
...
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.