Hi,
I have an excel where each time after the user bring it up, he or she would click in a button that call the procedure refresh().
Sub refresh()
ThisWorkbook.RefreshAll
Call timer
End Sub
Sub timer()
Application.OnTime Now + TimeValue("00:10:00"), "refresh"
End Sub
On the...