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?
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?
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.
OK.....Try this:
Before running it....select the Col_A cells.![]()
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
Is that something you can work with?
Thanks Ron!!!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks