Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Calculate values in a detail band
rbuser
June 2004
edited June 2004
in
General
Hi !
What would be the best way to calculate the differense between to columns
for each record in the detail band ?
Column 1 Column 2 Differense
--------------------------------------
10 8 2
8 10 -2
Thanks
Petter
Comments
rbuser
June 2004
edited June 2004
I would use a variable and use the OnCalc event:
Value := Query['Column1'] - Query['Column2'];
Regards,
Ace
This discussion has been closed.
Comments
Value := Query['Column1'] - Query['Column2'];
Regards,
Ace