答案1
你是指像下面这样的东西吗?
With ThisWorkbook.Sheets("Sheet1")
Range("C2").Hyperlinks(1).Follow
End with
如果您的地址实际上不是超链接:
With ThisWorkbook.Sheets("Sheet1")
ThisWorkbook.FollowHyperlink Address:=.Range("C2").Value, NewWindow:=False, AddHistory:=True
End with
另外,请注意您的值目前没有任何扩展。您可能希望在单元格中或通过 VBA 添加这些内容:
Address:=.Range("C2").Value & ".extention"