Skip to content

Instantly share code, notes, and snippets.

@jorpcolombia
Created November 22, 2013 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jorpcolombia/b95196888565f6ef31ca to your computer and use it in GitHub Desktop.
Save jorpcolombia/b95196888565f6ef31ca to your computer and use it in GitHub Desktop.
Sub ReemplazarPrimeraLetra()
Dim c As Range
For Each c In Selection
If c.Value <> "" Then c.Value = "T" & Right(c.Value, Len(c.Value) - 1)
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment