Merging data to one cell from many

G

Guest

I want to take the contents from 4 cells and merge the data to one cell. The
cells are all numbers (the example below is what I'm trying to merge.)


CELL1 CELL2 CELL3 CELL4 Merged cell
1250 0301 140 003 12500301140003

I can use this formula
=CONCATENATE(Cell 1,Cell 2,Cell 3,Cell 4)
But it leaves out the zeros in the merged cell. They're important.
 
G

Guest

Nah.
Sure didn't. All I get from that formula is a blank cell. Even formatted
cells to text (assuming that is what the T is for?
 
J

JE McGimpsey

one way:

=TEXT(Cell1,"0000") & TEXT(Cell2,"0000") & TEXT(Cell3,"000") &
TEXT(Cell4,"000")
 

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

Similar Threads


Top