I need to calculate times on a form (Employees clocking in and out). The purpose is to record daily employee hours. The fields are [In], [LunchOut], [LunchIn], [Out], [OtherIn], [OtherOut]. These are Date/Time fields. Using the AM/PM format I am unable to calculate the employees daily hours. How can this be handled?
This is what I have come up with that doesn’t work.
=((Nz([Out])-Nz([In]))+(Nz([LunchOut])-Nz([LunchIn]))-(Nz([OtherOut])-Nz([OtherIn])))
This is what I have come up with that doesn’t work.
=((Nz([Out])-Nz([In]))+(Nz([LunchOut])-Nz([LunchIn]))-(Nz([OtherOut])-Nz([OtherIn])))