Inside the OnCalc event of the variable in the detail band, update the value of another variable located inside the group footer band. Be sure the timing of the initial variable is set to traversal.
procedure TForm1.ppVariable1Calc(Sender: TObject, value: variant); begin value := Report.DataPipeline['AmountPaid'] + 100; ppVariable2.Value := ppVariable2.Value + value;
Comments
Inside the OnCalc event of the variable in the detail band, update the value
of another variable located inside the group footer band. Be sure the
timing of the initial variable is set to traversal.
procedure TForm1.ppVariable1Calc(Sender: TObject, value: variant);
begin
value := Report.DataPipeline['AmountPaid'] + 100;
ppVariable2.Value := ppVariable2.Value + value;
end;
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
thank you Nico.