Skip,
I'm still having some trouble with the "sum". So, let me explain how I have my data set-up, and how I am populating my form.
I have the following table: tblClockIn
PunchInID (auto number)
EmployeeID (Linked to a main employee info table)
TimeIn (formatted as General Date to show Date and Time)
TimOut (formatted as General Date to show Date and Time)
TotalHours (where I am trying to sum)
I have a main form, frmClockInOut, where the employee selects their ID, and once the ID is selected, a subform is populated with their information. This subform also houses two subsub forms: the clockIn sub sub form, and the ClockOut sub sub form.
The ClockOut sub sub form is where I am trying to "sum", and it pulls info from tblClockIn via a query using the PunchInID. The form has fields showing the clock-in time, clock-out time, and sum. (If you need more information of how the query is set-up, I can give that to you)
I tried re-formatting the fields like you said earlier, and I couldn't make it pull the right data. So, in the query, I made an expression field for the sum: "TimOut-TimeIn" and it did give me a value, but they all look something like this: 5.787E-07.
Given this information on the way I have things set-up, can I use the date and time information separately, and if so how would I sum? Do I need to create a new query with the code you gave earlier? Do I need to start over

?
Thank you in advance for your help.
Joy