Concatenate Numers / Text (Special)

T

Teddy-B

- I need to concatenate three cells each containing specific info:
1st cell is a letter (ie. "A", "B", etc.)
2nd & 3rd Cells are two digit numbers (ie. 01, 02....10,11)-(format is
custom 00)

I need the combination to concatenate and show as follows:

A0105, B1106, H0209, etc.

Please help, I am beginning to think that this is an impossible task.
 
D

Dave Peterson

=a1&text(b1,"00")&text(c1,"00")

or you could do the arithmetic first:

=a1&text((b1*100)+c1,"0000")
 
M

muddan madhu

try this

assumed cell A1 has Letter
B1 & B2 has numbers

=A1&TEXT(B1,"00")&TEXT(B2,"00")
 

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