How can I make a sum between two times? For example 0:30 + 0:30 =1
Develop games in your browser. Powerful, performant & highly capable.
For example,
.
To convert them to minutes:seconds
dop2000 thanks! It is possible to see, 2:0 —> 02:00?
you can use zeropad to do that...
zeropad(int(195/60),2) & " minutes : " & zeropad((195%60),2)