View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett[_4_] Don Guillett[_4_] is offline
external usenet poster
 
Posts: 2,337
Default 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