Merge the contents of multiple cells into one cell

P

Penny

I've merged contents of multiple cells into one and now that I don't need A2
and B2 Cells, the information from the merge disappears if i delete those two
cells. How do I stop this?

Example below:

A2: 869000471
B2: 02810
C2: 86900047102810

The formula that I used was =A2&""&B2
 
D

Dave Peterson

You sure you kept the leading 0 that appeared in B2?

If those values are really numbers, you may want:

=text(a2,"000000000")&text(b2,"00000")
(no need for &""&)

After you've created the formula, you can select those formula cells (all of
column C) and do:

select column C
Edit|copy
edit|paste special|values

And delete columns A and B
 
P

Penny

Thank you both for your help.. !!!


Dave Peterson said:
You sure you kept the leading 0 that appeared in B2?

If those values are really numbers, you may want:

=text(a2,"000000000")&text(b2,"00000")
(no need for &""&)

After you've created the formula, you can select those formula cells (all of
column C) and do:

select column C
Edit|copy
edit|paste special|values

And delete columns A and B
 

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

Top