RobNauticus
MIS
Hello good people,
Have a small problem with a formula totaling shared numbervars from a subreport. CR10 from Pervasive SQL DB.
Here is a formula from one of my subreports
There are a few more similar to this you will see them in the next section for their names.
Here is the formula that is having a problem totaling. This formula is located a section below the subreports in the report footer a/b.
I may have a problem with the way I am writing these formulas could someone please review and see if anything looks incorrect?
Thanks all,
Rob
Have a small problem with a formula totaling shared numbervars from a subreport. CR10 from Pervasive SQL DB.
Here is a formula from one of my subreports
Code:
whileprintingrecords;
if isnull({#RTotal0})
then shared numbervar Glulam_Total := 0
else shared numbervar Glulam_Total := {#RTotal0};
There are a few more similar to this you will see them in the next section for their names.
Here is the formula that is having a problem totaling. This formula is located a section below the subreports in the report footer a/b.
Code:
whileprintingrecords;
shared numbervar Plywood_Total;
shared numbervar Lumber_Total;
shared numbervar Glulam_Total;
shared numbervar Hardware_Total;
shared numbervar Hybrid_Total;
shared numbervar Truss_Total;
Plywood_Total + Lumber_Total + Glulam_Total + Hardware_Total + Hybrid_Total + Truss_Total + {@Addon_11};
I may have a problem with the way I am writing these formulas could someone please review and see if anything looks incorrect?
Thanks all,
Rob