+ Reply to Thread
Results 1 to 3 of 3

Converting Text to Clickable Links

  1. #1
    Registered User
    Join Date
    03-02-2011
    Location
    Ottawa, Canada
    MS-Off Ver
    Excel 2011 - Mac
    Posts
    2

    Converting Text to Clickable Links

    I have a spreadsheet ful of text URLs which are not clickable. How does one convert a link to a clickable link which will open a browser and go to the associated URL?

    I figured that this would be easy to figure out!



    Thanks for any and all feedback.

    L

  2. #2
    Registered User
    Join Date
    03-01-2011
    Location
    England
    MS-Off Ver
    Excel 2010
    Posts
    35

    Re: Converting Text to Clickable Links

    This macro will do it:


    Sub HyperAdd()
    '
    ' Converts each text hyperlink selected into a working hyperlink
    '
    For Each xCell In Selection
    ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
    Next xCell
    '
    '
    End Sub

  3. #3
    Registered User
    Join Date
    03-02-2011
    Location
    Ottawa, Canada
    MS-Off Ver
    Excel 2011 - Mac
    Posts
    2

    Re: Converting Text to Clickable Links

    Thanks Legs! It works like a charm!!




    Quote Originally Posted by Legs View Post
    This macro will do it:


    Sub HyperAdd()
    '
    ' Converts each text hyperlink selected into a working hyperlink
    '
    For Each xCell In Selection
    ActiveSheet.Hyperlinks.Add Anchor:=xCell, Address:=xCell.Formula
    Next xCell
    '
    '
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1