Record Total Expression in Page Footer

G

Guest

I know that I can't use record total expression in pager footer.

However, I have to use page footer to show sum amount (not report footer),
since the detail section for the report gets grow.

Is there anyway to get around this problem?

Please help.
 
G

Guest

Try this stages:

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]
 
F

fredg

I know that I can't use record total expression in pager footer.

However, I have to use page footer to show sum amount (not report footer),
since the detail section for the report gets grow.

Is there anyway to get around this problem?

Please help.

See Microsoft KnowledgeBase article:
132017 "How to sum a column of numbers in a report by page"
 
M

Marshall Barton

Stephen said:
I know that I can't use record total expression in pager footer.

However, I have to use page footer to show sum amount (not report footer),
since the detail section for the report gets grow.


If all you want is the report's grand total, then you can
calculate it in the a report header section text box. Then
just refer to that text box in your page header/footer text
box.
 
G

Guest

Thank you for the tip.

Worked perfect.

Marshall Barton said:
If all you want is the report's grand total, then you can
calculate it in the a report header section text box. Then
just refer to that text box in your page header/footer text
box.
 
G

Guest

Thank you for the tip.

Worked perfect.

Ofer Cohen said:
Try this stages:

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]

--
Good Luck
BS"D


Stephen said:
I know that I can't use record total expression in pager footer.

However, I have to use page footer to show sum amount (not report footer),
since the detail section for the report gets grow.

Is there anyway to get around this problem?

Please help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top