Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey
I have the following value: "7D: Test Note" I would like to remove the "7D: " from the above string. How do I do this? Thanks Todd |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Todd,
With string in A1 put this in (say) b1: =SUBSTITUTE(A1,"7D:","",1) Or in VBA, use REPLACE function newstring=Replace(Range("A1"),"7D:","") Range("a1") could be replaced by string variable. HTH "Todd Huttenstine" wrote: Hey I have the following value: "7D: Test Note" I would like to remove the "7D: " from the above string. How do I do this? Thanks Todd |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I remove 5 digit from a string ? | Excel Discussion (Misc queries) | |||
Remove specified string from value | Excel Programming | |||
Remove specified value from string | Excel Programming | |||
remove leading zero from a string.. | Excel Worksheet Functions | |||
Remove the last letter from a string! | Excel Programming |