View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Santi[_2_] Santi[_2_] is offline
external usenet poster
 
Posts: 15
Default OPENING SEVERAL HYPERLINKS

In an excel worksheet how can I open several hyperlinks at once without
having to click on each one? Taking into account that the hyperlinks are a
result of a €śVlookup€ť formula. Can anyone help? I tried the macro listed
below which works but only when the hyperlink is not part of a formula.


Sub hypper()
Dim h As Hyperlink
For Each h In ActiveSheet.Hyperlinks
h.Follow
Next
End Sub