Thread
:
removing first three characters
View Single Post
#
1
Posted to microsoft.public.excel.programming
Don Guillett[_4_]
external usenet poster
Posts: 2,337
removing first three characters
oops use THIS
Sub deleteleftthree()
For Each c In Selection
c.Value = Mid(c, 4, Len(c) - 3)
Next
End Sub
--
Don Guillett
SalesAid Software
"Tiffany" wrote in message
...
I need to remove the first three characters from a string
of text for example
tbwGo_Home - I would like the result to be Go_Home
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]