View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Kenneth Hobson[_4_] Kenneth Hobson[_4_] is offline
external usenet poster
 
Posts: 10
Default run app on database "refresh"

Right click the sheet's tab, View Code, and paste:

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
FixHyperlinks
applicaiton.EnableEvents = True
End Sub