Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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... "evoxfan" wrote: 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
More options:
="D"&MID(A1,2,255)&"C" =REPLACE(A1,1,1,"D")&"C" -- Biff Microsoft Excel MVP "evoxfan" wrote in message ... 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove any letter from a referenced cell | Excel Discussion (Misc queries) | |||
Adding a number to a letter of the alphabet to get a letter | Excel Worksheet Functions | |||
remove first letter | Excel Worksheet Functions | |||
change headers from letter to number/number to letter | Excel Worksheet Functions | |||
column header changed from letter to number, how return to letter | Excel Discussion (Misc queries) |