Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
I have a table with timestamps, timestamp 1 and timestamp 2. Now I want to count the timestamps where the difference between timestamp 1 and timestamp 2 is more than 2 minutes, the format of the timestamp is "hh:mm:ss".
Best Regards
Mårten
Hi
Assuming these are valud QV timestamps, then timestamps are in units of a day (24 hours or 1440 minutes) and the format is not relevant.
For your question:
If(timestamp2 - timestamp1 > 2/1440, ...... , ......)
HTH
Jonathan
Hi,
Use Count(if(Interval(timestamp1-timestamp2,'mm')>2,timestamps)
Regards
Hi
Assuming these are valud QV timestamps, then timestamps are in units of a day (24 hours or 1440 minutes) and the format is not relevant.
For your question:
If(timestamp2 - timestamp1 > 2/1440, ...... , ......)
HTH
Jonathan
Thanks! Now it works.
Best regards
Mårten