A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
How to make Command Button go to hyperlink based on value choosed in G6?
You want to call the link directly?
Let us assume G6 contains then
you can use that:
Sub Test()
ThisWorkbook.FollowHyperlink Range("G6")
End Sub
A file link should also work.
Andreas.