GMDorsey
Technical User
- Dec 3, 2008
- 11
I am trying to place a countdown timer on multiple cells so we can track ETA times for jobs we do that we track on a spread sheet each day. Is this possible and if so how do I go about doing it.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub RunTimer
dim t, d
t = timer
d = 60 'calculate every 60 seconds
do
if timer > t + d then Activesheet.calculate
doevents
loop
end sub