I have a dropdown in i7. In j7 I have a formula, that adjusts the hyperlink -- based on value in i7. HLinks are to different cells in the same worksheet. Trying to get XL to automatically jump to j7 upon value change in i7, and to follow/execute the corresponding HLink, meaning for the j7 to act as if it was clicked on (but without the use of sendkeys-left mouse click). So far either line of below code, executed one at a time - on j7, gives "Run-time error '9': Subscript out of range"
Sub HLink_follow()
ActiveCell.Hyperlinks(1).Follow
ActiveWorkbook.FollowHyperlink ActiveCell.Hyperlinks(1).Address
End Sub
Am aware that this all can be done via VBA, without even having j7, but want to keep it the way that it is. If you are not clear on something, ask a question.