+ Reply to Thread
Results 1 to 3 of 3

Pasting Text to hyperlink

Hybrid View

  1. #1
    Registered User
    Join Date
    06-23-2005
    Posts
    86

    Pasting Text to hyperlink

    Hey Guys
    I have a spreadsheet that has 700 lines of web links but they are formatted as text.
    Is there any way I can just copy and paste them to hyperlinks that will enable me to click on one and then it takes me to that web address?

    Thanks in advance
    cd

  2. #2
    Registered User
    Join Date
    07-22-2008
    Location
    India
    Posts
    5
    The below code will convert your text into links...
    Please select all the cells before running...

    Sub ConvertTextToHyperLink()
    
        Dim strHyperLink As String
        Dim Ce As Range
        
        For Each Ce In Selection
            strHyperLink = Ce.Value
            Ce.Hyperlinks.Add Anchor:=Selection, Address:= _
            Ce.Value, TextToDisplay:=Ce.Value
            
        Next Ce
           
    End Sub
    Ty.
    Ilyas Kazi

  3. #3
    Registered User
    Join Date
    06-23-2005
    Posts
    86

    Thumbs up Thanks ilyaskazi_01...but

    Hi there

    Thanks for responding

    Sort of works but have an issue

    If I select the range of 700 lines and run the code...it converts them all to hyperlinks but no matter which line I then click it takes me to the hyperlink of the first line only.

    Can you amend it slightly please?

    Thanks again
    cd

+ 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