I incorrectly posted my first question. The duration is actually in
Minutes
and Seconds. So 6:30 is six minutes and thirty seconds. This causes
problems when trying to convert.
What Rick was saying still stands:
Access Date/Time field types are not really suitable for storing
durations - period. They're good for storing precise moments of date
and time, and that's about it.
I'd suggest that you use a Long Integer field to store total seconds
(390 in this example). You can display it as 6:30 with an expression
[Duration] \ 60 & Format([Duration] MOD 60, ":00")
and you can do data entry using a Form with two unbound textboxes,
minutes and seconds, with AfterUpdate code to calculate total seconds
and update the fields.
John W. Vinson[MVP]