Hi All,
i have a timer control which allows it to function on a start and a stop button.
Start button basically starts the timer and stop button saves the timer value in hh:mm:ss in a sharepoint field and resets the timer.
here is the code below for it.
UpdateContext({timer: Text(Time(0, 0, Timer1.Value/1000), "[$-en-US]hh:mm:ss")});
Now, the requirement is that every time the timer is started and stopped it should append to its previous value.
so if my timer duration field has value of 00:00:05 seconds and i turned the timer on and off again and it captured 00:00:10 seconds the total time in the field should be 00:00:15 seconds.
which means i basically want to add previous and current value and store it in the field, how do i do that?