Skip to content

Instantly share code, notes, and snippets.

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