How do I subtract time pass midnight.
eg 11:30 pm to 12:30 am =1:00
Include the date as well as the time in the field.
DateDiff("n",[StartTime],[EndTime])
will return the elapsed time in full minutes.
? DateDiff("h",#8/1/2009 11:30 pm#,#8/2/2009 12:35 am#)
65
DateDiff("h",[StartTime],[EndTime])
will return the elapsed full hours.
? DateDiff("h",#8/1/2009 11:30 pm#,#8/2/2009 12:35 am#)
1