I have two times.
-
The time the process started (example: a)
-
The time the process ends (example: b)
How do I calculate the difference?
I have two times.
The time the process started (example: a)
The time the process ends (example: b)
How do I calculate the difference?
Hi @d.ulutas
If the datatype of both times is as DateTime then you can directly find the difference
by subtracting as diff = a-b and if the data types of variable and b are different then first convert it to DateTime and then do the subtraction
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.