Format serie of numbers

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

Guest

I need the following number to look as follows:
Is: A1 D01-3
Want: A01 D01-3

I need to add a zero after the A to 3000 entries without changing the rest.
Can it be done?
Thanks
Norm
 
Assuming your first number is in A1 enter this in B1 and drag down

=LEFT(A1,1)&"0"&+MID(A1,2,7)
 
If it's the only "A" in the text you could just use the Replace function, and
replace "A" with "A0"
 
With a formula in another cell.....assuming your data in cell B2

=REPLACE(B2,2,0,0)
 
Thanks to all,
I used the REPLACE function for this problem. Back in business!
 

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