runners time format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Access 2002 - table to store track runner times in ##:##.## where it saves
the minutes:seconds.miliseconds, each with two digits.

I can't get a format to work for me - Can you help? In searching this forum
for an answer I did happen upon some SQL code but I need to know what to put
in the properties section of the table. THANKS!
 
The Date/Time format in Access won't handle milliseconds. You might be better
off putting the information into three fields: Minutes Seconds Milleseconds.
Then you could combine the and do the math as needed.

Coincidentially I just changes a field in an Oracle database from DATE to
TIMESTAMP which will handle a lot of milliseconds.
 
Dear Maureen:

I would use the Currency/Money datatypes to store this, with the time in
seconds. Write functions to convert the input from the format you desire,
and to take the value and redisplay it.

Tom Ellison
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top