Alright, from the directions above... I have the formulas in my subreports and they are providing the correct values needed.
(an example of one is:
whileprintingrecords;
shared numbervar hcost := sum({HourCost;1.hourcost})
Now in my main form, I have my formula to do the calculations like so..
whileprintingrecords;
shared numbervar mat;
shared numbervar hcost;
numbervar total;
total := mat + hcost + CDbl({SumEqOtherALL;1.EqTotal});
... I want this ran for each change of group. So i have the formula below in my group footer:
whileprintingrecords;
numbervar total;
Putting these last two formulas in the group footer doesn't work right. The first group is just the ({SumEqOtherALL;1.EqTotal}) value, and the second group is a number i have no clue from.
If i put these formulas in the Report Footer, then the LAST group calculates fine, but the first one doesn't at all.
Obviously, I'm not putting the correct formula in the right spot, or not doing something right here..... any clues?
Simply put, this is what i'm trying to do. I have my Main Report, 2 sub-reports and I will have several groups. I am calculating a total for EACH group from the 2 values pulled from the sub-reports and one value from the main report.