info12suchi
Programmer
Hi,
I have a formula field "Actual time Duration" which has the following formula.
Stringvar array Std_Time := split(cstr({WOMNT_LABOR.ACT_TIME_DURATION}),".");
val(Std_Time[1])*60+val(Std_Time[2])
And the Display is shown in the Hours.Minutes format with formula in the display string as below.
totext(truncate(currentfieldvalue/60),0,"")+"."+right("00"&totext(remainder(currentfieldvalue,60),0,""),2)
when I try to chart the group footer of this field the chart still considers the Minutes format but not the Hours.Minutes.
But the Chart should be designed on the Hours.Minutes. Please help me on this.
I have a formula field "Actual time Duration" which has the following formula.
Stringvar array Std_Time := split(cstr({WOMNT_LABOR.ACT_TIME_DURATION}),".");
val(Std_Time[1])*60+val(Std_Time[2])
And the Display is shown in the Hours.Minutes format with formula in the display string as below.
totext(truncate(currentfieldvalue/60),0,"")+"."+right("00"&totext(remainder(currentfieldvalue,60),0,""),2)
when I try to chart the group footer of this field the chart still considers the Minutes format but not the Hours.Minutes.
But the Chart should be designed on the Hours.Minutes. Please help me on this.