J
jesseb
I have =sum([inv_amt]) in my page header.
I want to take the total on each page/group and total it in the report footer.
The below reads like it is the answer, but the problem (if it is correct) is
how do I bound a text box to a field?
Now if the below is not correct can someone tell me how I can place a total
in the report footer for my total in the header?
1. Create a text box in the detail section, and bound it to the field you
want to sum
2. Set the RunningSum property of that text box to OverAll
3. Set the Visible property of the text box to No
4. Create a text box in the Report PageFooter and in the control source write
=[TextBoxNameFromStage1]
Thanks, Jesseb
I want to take the total on each page/group and total it in the report footer.
The below reads like it is the answer, but the problem (if it is correct) is
how do I bound a text box to a field?
Now if the below is not correct can someone tell me how I can place a total
in the report footer for my total in the header?
1. Create a text box in the detail section, and bound it to the field you
want to sum
2. Set the RunningSum property of that text box to OverAll
3. Set the Visible property of the text box to No
4. Create a text box in the Report PageFooter and in the control source write
=[TextBoxNameFromStage1]
Thanks, Jesseb