I need a cross tab that sumarized the time for each department. The time on the database is in integers. I need this formula to format the time in a useful manner. I receive an error " A print time formula that modifies variables is used in a chart or map"
Help Appreciated!
NumberVar TotalSec1 := {#rt_subtotal_time};
NumberVar Hours := Truncate ( TotalSec1 / 3600);
NumberVar Minutes := Truncate (Remainder ( TotalSec1,3600) / 60);
totext(abs({#rt_subtotal_time}/ 3600),"00") & ":" &
totext(abs(remainder({#rt_subtotal_time},3600) / 60),"00");
Help Appreciated!
NumberVar TotalSec1 := {#rt_subtotal_time};
NumberVar Hours := Truncate ( TotalSec1 / 3600);
NumberVar Minutes := Truncate (Remainder ( TotalSec1,3600) / 60);
totext(abs({#rt_subtotal_time}/ 3600),"00") & ":" &
totext(abs(remainder({#rt_subtotal_time},3600) / 60),"00");