SELECT YourField, Int([YourField]/1440) AS Days,
Int(([YourField]-(1440*[Days]))/60) AS Hours,
[YourField]-(1440*[Days])-([Hours]*60) AS Minutes, [Days] & ":" &
[Hours] & ":" & [Minutes] AS Expr2
FROM YourTable;
Hope that helps!
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.