I would like to calculate time without the end user entering a date. I am using (in a query)
DateDiff("n",[StartTime],[StopTime])-[BreakTime])
works perfect - except sometimes the production line runs night shift and instead of a normal:
08:00 (start) 11:00 (stop) 15 (breaktime) = 165 (minutes)
they work:
23:00 (start) 2:00 (stop) 15 (breaktime) = ? (should be 225 minutes)
since it goes into the next day it is not calculating properly. I do not want the end user to enter date...any help?
DateDiff("n",[StartTime],[StopTime])-[BreakTime])
works perfect - except sometimes the production line runs night shift and instead of a normal:
08:00 (start) 11:00 (stop) 15 (breaktime) = 165 (minutes)
they work:
23:00 (start) 2:00 (stop) 15 (breaktime) = ? (should be 225 minutes)
since it goes into the next day it is not calculating properly. I do not want the end user to enter date...any help?