Hi,
We are trying to calculate the difference in working hours between second time and subsequent row entry time file after sorting ascendingly for the same vehicle no...the first row second time - subsequent row entry time
I'm facing difficult in using the multi row formula for calculating the no of hours
Best Regards,
Solved! Go to Solution.
Hi,
Thank you for the solution. It's working great!
Just wanted to check how can we get the difference in hh:mm:ss format
Hi,
I'm trying to extract only those records that are less than 4 hours and get the corresponding details too..
Could you please help.
Something like this in a Filter tool should do the trick:
Left([Time Difference],2) IN ('00','01','02','03') OR [Time Difference] = '04:00:00'
Note that this is LESS THAN OR EQUAL TO. If you want just less that, remove everything from "OR" on.