Simply Program

Simply programming - It’s a life style
Filed under Programming

This macro will allow you to extract a url/mailto from excel and place it into the next cell.
To see more options: Click here

CODE:
  1. Sub ExtractHL()
  2. Dim HL As Hyperlink
  3. For Each HL In ActiveSheet.Hyperlinks
  4. HL.Range.Offset(0, 1).Value = HL.Address
  5. Next
  6. End Sub

Posted by sp on Saturday, May 2nd, 2009


You can follow any responses to this entry through the magic of "RSS 2.0" and leave a trackback from your own site.