- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
How to add and subtract time quickly in the form of text minutes and seconds?
How to get the new text format value after the variable is in text format content, is the value of the minute and second, and how to make it +5 seconds
Is there an exi
Thanks!
ti="00:59:59";
ti=ti+5;
//ti="01:00:04";
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add and subtract time quickly in the form of text minutes and seconds?
Format + Informat
Right("00" || Format(In Format(ti, "hr:m:s") + 5, "hr:m:s"), 8)
-Jarmo
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add and subtract time quickly in the form of text minutes and seconds?
Format + Informat
Right("00" || Format(In Format(ti, "hr:m:s") + 5, "hr:m:s"), 8)
-Jarmo