How to do this to print the hyperlink files found in the "D: E" columns by selecting the rows in the "A" column
Sub Print_Hyperlinks()
Dim rng As Range
Dim row As Range
Dim cell As Range
Dim LastRow As Long
LastRow = Range("A2").End(xlDown) 'Print only selected rows in "A"
Set rng = Range("D2:E" & LastRow)
For Each row In rng.Rows
For Each cell In row.Cells
Selection.Hyperlinks(1).Follow 'List of Hyperlinks in Column "D"
Selection.Hyperlinks(2).Follow 'List of Hyperlinks in Column "E"
Next cell
Next row
End Sub
source
share