Thread
:
Stripping The First Four Characters from a value
View Single Post
#
2
Posted to microsoft.public.excel.misc
Harlan Grove
external usenet poster
Posts: 733
Stripping The First Four Characters from a value
Rob wrote...
What I am trying to figure out is how I can remove the first four characters
via a VBA Macro from a value of a cell.
....
Try
somecell.Value = Mid(somecell.Value, 5)
Reply With Quote
Harlan Grove
View Public Profile
Find all posts by Harlan Grove