Hi, I want a timer that counts upwards in the format minutes:seconds where seconds counts to 60 then resets to 00, 01, 02 and so on and minutes counts on indefinitely. I use two params, a startTime and currentTime. Right now, the below works-ish, but I'd like to know if there is a way to format the numbers with a zero in front until 10 seconds as right now they simply go 1, 2, 3.
concat(tostr(toint(floor(dateDiff({view.custom.start},{view.custom.now},"minute")))),":", tostr(toint(floor(dateDiff({view.custom.start},{view.custom.now},"second") - (toint(floor(dateDiff({view.custom.start},{view.custom.now},"minute")))*60)))))