Hi there,
If your list of times begins in cell A1 then enter the following formula in cell B1 & copy it all the way down beside the list:
=IF(A2 - A1 > TIMEVALUE("0:04"), "Log Missing", "")
This produces a "Log Missing" message immediately above any cell whose log time is more than four minutes behind the cell above it. To use a different time interval just change TIMEVALUE("0:04") to suit.
You can also enter the following formula (anywhere) to show you the number of the logs that are missing:
="Missing Logs = " & COUNTA(B1:B99999, "Log Missing")
Hope this helps,
Greg M
Bookmarks