Time in Minutes and Seconds

R

Ron P

How can I display Time in minutes and seconds only. What I need is the
ability to display hh:mm:ss in only mm:ss, this means that the hour needs to
be converted to minutes. I'm not sure how to go about doing this. Any
assistance would be appreciated. thanks
 
K

Ken Snell [MVP]

Format(Hour([TimeField])*60 + Minute([TimeField]),"00:") &
Format(Second([TimeField]),"00")
 

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

Top