Convert Seconds

  • Thread starter Thread starter Jessie
  • Start date Start date
J

Jessie

Hello.

I Have a field in my table that represents seconds worked.

Now we have a client that won't accept the log in seconds
they want it formatted:

hh:mm:ss

is there a way to make access convert the seconds into
this format?

Thanks,
Jessie
 
Try divide your number of seconds by the number of seconds in a full day
(86400). Then format as time.
 
Format$([Secs] \ 3600, "00") & ":" &
Format$(([Secs] MOD 3600) \ 60, "00") & ":" &
Format$([Secs] MOD 60, "00")

wil give yo the Text String that represent the [Secs] in hh:mm:ss format.
 

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

Similar Threads

convert time 2
Best Ways to Convert OST to PDF? 3
converting seconds to hh:nn:ss 2
Track time 1
Medium Time format showing seconds 8
Excel Calculating Phone bill per second 6
10 digit date 2
timestamp handle 5

Back
Top