combining cells

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

Guest

how do i combine two cells in two rows into one cell without losing data

for example

A1 information here needs
A2 to be combined with information here
 
Two ways that I know of.

if cell B5 has LastName and cell C5 has FirstName try this:
=CONCATENATE(B5,", ",C5)
this gives you "LastName, FirstName"

another way to do it is:
=B5 &", " & C5
this gives the same result.

hth,
JMorrell
 

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