+ Reply to Thread
Results 1 to 9 of 9

Hyperlinking in Excel

Hybrid View

  1. #1
    Registered User
    Join Date
    05-30-2008
    Posts
    21

    Sure Does!

    Thanks a lot. I've been playing around with this and have ONE more question. Going back to the first module...is it possible, rather than having to select the cells to run the macro on....to say if the value in column E is greater than 0, then run on column A of the same row(s)?

  2. #2
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Hyperlinking in Excel

    I need a clarification....

    Are you saying that:
    Col_A will still contain the hyperlink destination text
    and
    Col_E will contain a numeric value
    AND
    you want to only create hyperlinks in Col_A where the
    corresponding Col_E value is greater than zero?
    Ron
    Former Microsoft MVP - Excel (2006 - 2015)
    Click here to see the Forum Rules

  3. #3
    Registered User
    Join Date
    05-30-2008
    Posts
    21

    Thanks Again!

    Exactly, basically column E would be the number of records on each log, so if it where 0, there's no reason to hyperlink. So, exactly what you said, numeric value is in E...if it's greater than 0 than the entry in column A would be hyperlinked.

  4. #4
    Forum Expert Ron Coderre's Avatar
    Join Date
    03-22-2005
    Location
    Boston, Massachusetts
    MS-Off Ver
    2013, 2016, O365
    Posts
    6,996

    Hyperlinking in Excel

    OK.....Try this:

    Sub ConvertTxt2HyperlinkInColA()
    Dim cCell As Range
    Dim strPath As String
    
    strPath = ""
    For Each cCell In Selection.Cells
        If cCell.Offset(ColumnOffset:=4).Value > 0 Then
            On Error Resume Next
            ActiveSheet.Hyperlinks.Add _
                Anchor:=cCell, _
                Address:=strPath & cCell.Value, _
                TextToDisplay:=cCell.Value
        End If
    Next cCell
    End Sub
    Before running it....select the Col_A cells.

    Is that something you can work with?

  5. #5
    Registered User
    Join Date
    05-30-2008
    Posts
    21

    Thanks!

    Thanks Ron!!!

+ 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