Combining cells

C

caseysmydog

I need to connect cells a-b-c together for insertion of names, Last, First.
I know this must be simple...anyone help?
 
N

Nigel

Do you mean concatenate the cells?

If so then use =Concatenate(A1,B1,C1)

You can also add spaces or other test as well, e.g

=Concatenate(A1," ",B1," ",C1)
 
C

caseysmydog

On the left side of my list I need a space wide enough to contain the last
and first name of an individual. Going down that left side there would be
multiple names entered.
I have cell a and b and c set aside to enter the name but don't know how to
connect them as a unit.
Thanks...
 
Top