I want to specify elapsed time format that one can find in MS Excel.
There is no specific data type that is designed for periods-of-time in
Access. The DateTime data type is designed to manage particular moments-
in-time, which is a bit different.
There are a number of approaches, and the best depends on your needs. You
can use:
a text field such as "23:45:30", which will sort well, be easy for the
user interface, hard to validate, but it won't do maths and
calcuations very well;
a real number (single or double) in some defined units such as hours or
seconds, so 01:30:30 could be stored as 1.50 or 5400.0 and so on. The
UI will have to do some work to make input and output user-friendly,
but validation, sorting, and maths all work well;
two integer fields (or three) for hours and minutes (and seconds),
easy to validate, fairly easy to sort and calculate, not too hard on
the user.
and so on. There are probably more alternatives too, but you get the
idea.
Hope it helps
Tim F