Absolute time value in reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When summing a group with time values formatted in "short time", if the value
goes over 24 hours, it displays the time as it would be in the next day. For
example, if my total time was 25:42, it displays it as 1:42.

Does anyone know how to correct this without having to write extensive code
for the calculation?
 
Troy said:
When summing a group with time values formatted in "short time", if the value
goes over 24 hours, it displays the time as it would be in the next day. For
example, if my total time was 25:42, it displays it as 1:42.


Int(time * 24) & Format(time,"\:nn")
 

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

Back
Top