Sub Trim10()
With Activecell
.Value = Mid(.Value,11,Len(.Value))
End With
End Sub
or
Sub Trim10B()
With ActiveCell
.Value = Mid(.Value, 11)
End With
End Sub
HTH,
Bernie
MS Excel MVP
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.