Remove a letter from a number?

  • Thread starter Thread starter evoxfan
  • Start date Start date
E

evoxfan

I have a column of numbers beginning with a letter such as:
X05500
X95000
In the next column, I want to convert the "X" to a "D" and add a "C" to the
end such as:
D05500C
D95000C

What is the best way to accomplish this?

Thanks in advance.
 
If you have your nos in Col A starting at A1
then in B1 enter
="D"&RIGHT(A1,LEN(A1)-1)&"C"
and copy down...
 

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