format for minutes, seconds and hundreths of a second

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

Guest

does anyone know please how i can put a sports time into a database format.
 
I haven't tryed this in the newer versions of Access, but in previous builds
one can select the field type "Sports Time" from more under the data type in
database design view.
If you cannot see it, click "Lookup Wizard" as this connects to the
office.microsoft.com website and downloads the newest field types. (It did in
previous versions, anyway)
 
does anyone know please how i can put a sports time into a database format.

I'd suggest using a Number of "Double" type to store seconds (e.g.
4:10.14 would be stored as 250.14). You can display this using an
expression like

[racetime] \ 60 & format([racetime] - 60*([racetime] \ 60), "00.00")

and enter times using a Form with unbound textboxes for the minutes
and seconds/fractional seconds, with a little vba code to put them
together.

John W. Vinson[MVP]
 

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