Hi experts,
i have this formula on a detail row
The question is ...
...
how can i have summary information in group footer for that formula ? If i rightclick the formula i don't have the option to insert summary.
I have CR 9.2
Thanks in advance for any suggestion.
Vito M. from BARI (Italy)
---------------------------------------
When you build a TEAM, try always those that they love to win. If you do not succeed to find them, then try those that they hate to lose. Ross Perot
i have this formula on a detail row
Code:
WhilePrintingRecords;
NumberVar SecondsDiff := DateDiff("s", {trv.hbegin}, {trv.hend} );
NumberVar Hours;
NumberVar Mins;
NumberVar Secs;
SecondsDiff := IIF (SecondsDiff > 0, SecondsDiff, 0 );
Hours := truncate(secondsdiff/3600);
Mins := truncate(((SecondsDiff/3600) - Hours)*60);
Secs := truncate(((((SecondsDiff/3600) - Hours)*60) - Mins)*60);
Time(Hours,Mins,Secs);
The question is ...
...
how can i have summary information in group footer for that formula ? If i rightclick the formula i don't have the option to insert summary.
I have CR 9.2
Thanks in advance for any suggestion.
Vito M. from BARI (Italy)
---------------------------------------
When you build a TEAM, try always those that they love to win. If you do not succeed to find them, then try those that they hate to lose. Ross Perot