I\'m using the Application.Ontime event to pull a time field from a cell, and schedule a subroutine to run at that time. My Application.Ontime event runs on the Workbook_Be
or you can just create some cell (like abacus), for example:
if I use application.ontime:
if range("V1") < 1 then Application.OnTime dTime, "MyMacro" range("V1")=range("V1") + 1 end if
if I want to stop counting...
Application.OnTime dTime, "MyMacro", , False range("V1")=range("V1") - 1