I'm creating a form for a specific ecological protocol that needs a precise time of inventory. I created a kind of timer. When you hit a button you have a start time (now()) and a end time (now() + 30 min).
Then there is a repeat function for each time the operator sees a Lizard. But when the 'new entry' button of the repeat function is hit, it updates the start time (and so the end time) to the current time
The start time is before the start of the repeat function.
Is it possible to fix the now() time?
Solved! Go to Solution.
Hi Pierre,
Use the once() function to prevent additional calculations to occur to the questions:
once(now())
once(now()+30*60*1000)
Hi Pierre,
Use the once() function to prevent additional calculations to occur to the questions:
once(now())
once(now()+30*60*1000)