Int Error

I have two times.

  1. The time the process started (example: a)

  2. 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

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.