gracegrenier
Registered User.
- Local time
- Today, 00:03
- Joined
- Aug 31, 2012
- Messages
- 11
Hello,
I am making a report that takes total seconds that it takes to do something and converts it to hh:nn:ss. In a different report I use
=Format(Int(Sum([IT Total Seconds])/3600),"00") & ":" & Format(Int((Sum([IT Total Seconds])-(Int(Sum([IT Total Seconds])/3600)*3600))/60),"00") & ":" & Format(((Sum([IT Total Seconds]) Mod 60)),"00")
To give me the sum of a group of records that I get from a query. But I need to make a report that just gives me the detail, one record at a time. So, I tried to take Sum out of the above, but I just can't get it right. Can anyone help?
Thanks,
gg
I am making a report that takes total seconds that it takes to do something and converts it to hh:nn:ss. In a different report I use
=Format(Int(Sum([IT Total Seconds])/3600),"00") & ":" & Format(Int((Sum([IT Total Seconds])-(Int(Sum([IT Total Seconds])/3600)*3600))/60),"00") & ":" & Format(((Sum([IT Total Seconds]) Mod 60)),"00")
To give me the sum of a group of records that I get from a query. But I need to make a report that just gives me the detail, one record at a time. So, I tried to take Sum out of the above, but I just can't get it right. Can anyone help?
Thanks,
gg