Time Formatting

  • Thread starter Thread starter Sheldon
  • Start date Start date
S

Sheldon

Using Format(Now(), ".....") how do I format the time part
to include tenths, or hundreds or thousands of a second?

Thanks
 
I do not believe that Access tracks time to that level.

Rick B

Using Format(Now(), ".....") how do I format the time part
to include tenths, or hundreds or thousands of a second?

Thanks
 
Using Format(Now(), ".....") how do I format the time part
to include tenths, or hundreds or thousands of a second?

You can't, not using a Date/Time field. One second is the finest
resolution available.

If you wish to store durations, I'd suggest using a Double or Float
number, storing seconds and fractions of a second. You'll need some
formatting code to display hours and minutes.
 
Back
Top