View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default 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