A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
to the best of my knowledge, the hyperlink worksheet function does not create a hyperlink that can be accessed by VBA. So you would "go to the source" so to speak:
Private Sub BrochureBtn_Click()
Dim Test As String
Test = Application.VLOOKUP(Range("C9").value,worksheets("Data").Range($A:$BS"),71,FALSE)
ActiveWorkbook.FollowHyperlink Address:=Test, NewWindow:=True
End Sub
Again, assuming your vlookup function returns a string that can be used as the address argument.
--
Regards,
Tom Ogilvy