Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
We have a client that has several thousand rows of data in a single column
formatted as this example shows: A12345B. Where the alpha characters are any of the 26 available. They want to change the leading alpha character from whatever it is presently to an upper case X while leaving the rest of the line unaffected. Any and all help appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Biredndra
With the data in Col A, enter into A1, then copy down ="X"&RIGHT(A1,LEN(A1)-1) -- ve_2nd_at. Randburg, Gauteng, South Africa "Biredndra" wrote: We have a client that has several thousand rows of data in a single column formatted as this example shows: A12345B. Where the alpha characters are any of the 26 available. They want to change the leading alpha character from whatever it is presently to an upper case X while leaving the rest of the line unaffected. Any and all help appreciated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you very much Kassie...I very much appreciate the time you took to
share this solution with me...it works elegantly and is easy to employ... Major Kudos! Birendra "Kassie" wrote: Hi Biredndra With the data in Col A, enter into A1, then copy down ="X"&RIGHT(A1,LEN(A1)-1) -- ve_2nd_at. Randburg, Gauteng, South Africa "Biredndra" wrote: We have a client that has several thousand rows of data in a single column formatted as this example shows: A12345B. Where the alpha characters are any of the 26 available. They want to change the leading alpha character from whatever it is presently to an upper case X while leaving the rest of the line unaffected. Any and all help appreciated. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
or if you need a macro, just replace the range here with yours
Sub replace_text() For Each cell In Range("a1:a30") cell.Value = "X" & Right(cell.Value, Len(cell.Value) - 1) Next End Sub -- Gary "Biredndra" wrote in message ... We have a client that has several thousand rows of data in a single column formatted as this example shows: A12345B. Where the alpha characters are any of the 26 available. They want to change the leading alpha character from whatever it is presently to an upper case X while leaving the rest of the line unaffected. Any and all help appreciated. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you Gary: The macro you created works very well and is very
helpful...I am very grateful for your time and assitance...! Thanks again... Birendra "Gary Keramidas" wrote: or if you need a macro, just replace the range here with yours Sub replace_text() For Each cell In Range("a1:a30") cell.Value = "X" & Right(cell.Value, Len(cell.Value) - 1) Next End Sub -- Gary "Biredndra" wrote in message ... We have a client that has several thousand rows of data in a single column formatted as this example shows: A12345B. Where the alpha characters are any of the 26 available. They want to change the leading alpha character from whatever it is presently to an upper case X while leaving the rest of the line unaffected. Any and all help appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Formatting text in cell (character by character) | Excel Discussion (Misc queries) | |||
Find Character in Text and put value in next column | Excel Worksheet Functions | |||
Excel: replace all 2 spaces to FF/LR in column of text | Excel Discussion (Misc queries) | |||
HELP - How to replace CRLF with a character withing an excel column | Excel Discussion (Misc queries) | |||
VBA code to define nbr of text character a a cell/column | Excel Programming |