I have a column (I) of hyperlinks to Google search book titles which are listed in a different column (H). Syntax in column I is: =HYPERLINK("Google" & H2,"Google "&H2). I wanted a VBA which will run through the column and run each search so I don't need to manually. I ran below VBA but the pages that open up are: OneDrive
Any idea why or how to correct?
Sub Open_Link()
Dim iCell As Range
For Each iCell In Range("I1:I60")
If Not IsEmpty(iCell) Then
ThisWorkbook.FollowHyperlink iCell.Value
End If
Next iCell
End Sub
Any idea why or how to correct?
Sub Open_Link()
Dim iCell As Range
For Each iCell In Range("I1:I60")
If Not IsEmpty(iCell) Then
ThisWorkbook.FollowHyperlink iCell.Value
End If
Next iCell
End Sub