Er... no. That wouldn't work, anyway. Besides, Duane's suggestion of
storing the hours as a Single was better, as you can always convert the
fractional part to minutes in your reporting.
Set up a Students table and an Attendance table separately, with the
attendance table containing records for each date of attendance along with
the hours (3.5, say) attended for that date. You can then run a total query
for all students showing the total number of hours attended. If you have
more than one class (likely), then you might also want to create a table
with the details for your classes. Your Attendance records would then
consist of foreign keys to Students and Classes, as well as the date and
hours information.

Signature
Brian Kastel
--Original Message----------------
Does this mean I have to type
Format(TimeValue("6:53") + TimeValue("1:27"), "h:nn")
for every single record????? This seems very time-
consuming.
>-----Original Message-----
>This will add your times:
[quoted text clipped - 4 lines]
>
> DateDiff("d", #0:00#, TimeValue("6:53") + TimeValue
("1:27"))
>which you can then multiply by 24 and add to the hours
part of your total,
>if you wish.
message
>news:1377201c443fd$f0793a40$a401280a@phx.gbl...
>I need to track the number of hours a student accumulates
[quoted text clipped - 12 lines]
>
>.