Skip to content

Instantly share code, notes, and snippets.

@ryankearney
Created October 17, 2011 18:24
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 ryankearney/1293359 to your computer and use it in GitHub Desktop.
Save ryankearney/1293359 to your computer and use it in GitHub Desktop.
Make Excel Cells Hyperlinks
Do While Not IsEmpty(ActiveCell)
ActiveCell.Hyperlinks.Add ActiveCell, ActiveCell.Value
ActiveCell.Offset(1, 0).Range("A1").Select
Loop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment