minute

  • Thread starter Thread starter giorgio
  • Start date Start date
G

giorgio

How can i convert e field time [hours.minute.seconds] in only minute for use
it a query ?
 
How can i convert e field time [hours.minute.seconds] in only minute for use
it a query ?

If you want 1:15:30 to be converted to 15, use the Minute() function.

If you want it to convert to 75.5, use:

1440*CDbl([timefield])

Access stores dates as days and fractions of a day, and there are 1440
minutes in a day.
 
Back
Top