cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
lala
Level IX

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
jthi
Super User

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

View solution in original post

1 REPLY 1
jthi
Super User

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

Recommended Articles