take off the first two letters

  • Thread starter Thread starter willz99ta via OfficeKB.com
  • Start date Start date
W

willz99ta via OfficeKB.com

Howdy folks,

I am looking for a way to take off the first two letters off of a list of
excel records. There are an unknown about of excel records AE there could be
2 or 15000 records.

Thanks for your help - good night and good luck,
Will the Texan
 
somethinglikethis:-

Sub ShortenByTwo()

Range("A1").select
Do Until IsEmpty(ActiveCell)
ActiveCell.Value = (mid(Activecell.value,3,len(activecell.value)-2)
Activecell.offset(1,0).select
Loop

Range("A1").select
End Sub



'somethinglikeant
 

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.

Ask a Question

Back
Top