Macro Please

  • Thread starter Thread starter 101 for me
  • Start date Start date
1

101 for me

Can anyone write me a macro to open multiple (but not all) hyperlinks on a
worksheet, Thanks!
 
Maybe this.......

Sub OpenSome()
Range("A1").Select
Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Application.WindowState = xlNormal
Range("A2").Select
Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Application.WindowState = xlNormal
End Sub

Vaya con Dios,
Chuck, CABGx3
 
You need to know the name of the TextToDisplay property.
For example, when creating the link below, the TextToDisplay is 'Glenn Beck
Program'.
ActiveSheet.Hyperlinks.Add _
Anchor:=Selection, Address:= _
"http://www.glennbeck.com/", _
TextToDisplay:="Glenn Beck Program"

So to pick only specific hyperlinks, have a set of program lines such as...
ActiveSheet.Hyperlinks("Glenn Beck Program").Follow _
NewWindow:=False, AddHistory:=True
 
101 for me said:
Can anyone write me a macro to open multiple (but not all) hyperlinks on a
worksheet, Thanks!

Works great, Thank you so much. Have a great day!
 
Back
Top