Skip to content

Instantly share code, notes, and snippets.

@jorpcolombia
Created November 22, 2013 03:55
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/f0dc3f1fa61403f24b5b to your computer and use it in GitHub Desktop.
Save jorpcolombia/f0dc3f1fa61403f24b5b to your computer and use it in GitHub Desktop.
Sub InsertarPrefijo()
Dim c As Range
For Each c In Selection
If c.Value <> "" Then c.Value = "PREFIJO" & c.Value
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment