editing a hyperlink

  • Thread starter Thread starter egildone
  • Start date Start date
Instead of a hyperlink why not just double click on the symbol desired.
right click sheet tab>view code>insert this>you may want to restrict the
cell range
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
ActiveWorkbook.FollowHyperlink Address:= _
"http://www.investors.com/StockResearch/StockCheckup.aspx?symbol=Target"
End Sub
OR, use and external query and if you have many do a loop to get info for
all. I do this for clients often.
 
Back
Top