I am using the following forumla to convert seconds into time:
NumberVar TotalSec := {VP_TIMESHEETITEM.TIMEINSECONDS};
NumberVar Hours := Truncate ( TotalSec / 3600);
NumberVar Minutes := Truncate (Remainder ( TotalSec,3600) / 60);
Totext ( Hours, '####') + ':'+
Totext ( Minutes,'00')
However, I need to be able to total the column, but the Summary options do not allow me to do so. I am okay with having the time displayed as an integer (i.e., 4:30 = 4.50) if that's what it will take.
Any suggestions?
NumberVar TotalSec := {VP_TIMESHEETITEM.TIMEINSECONDS};
NumberVar Hours := Truncate ( TotalSec / 3600);
NumberVar Minutes := Truncate (Remainder ( TotalSec,3600) / 60);
Totext ( Hours, '####') + ':'+
Totext ( Minutes,'00')
However, I need to be able to total the column, but the Summary options do not allow me to do so. I am okay with having the time displayed as an integer (i.e., 4:30 = 4.50) if that's what it will take.
Any suggestions?