removing first three characters
Hi Tiffany.
Sub Tester()
Dim sStr As String
sStr = "tbwGo_Home"
sStr = Mid(sStr, 4)
MsgBox sStr
End Sub
---
Regards,
Norman
"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
|