Total of calculated field

B

baraka

This could be very easy, but it is given me some pain. I wish to total in a
report's footer the sum of the product of two fields that is given in a
third unbound field.

How do I go about doing this?

BDSD
 
R

Rick Brandt

baraka said:
This could be very easy, but it is given me some pain. I wish to total in a
report's footer the sum of the product of two fields that is given in a
third unbound field.

How do I go about doing this?

=Sum([SomeField]*[SomeOtherField])
 
B

baraka

Thanks Rick. It worked

Rick Brandt said:
baraka said:
This could be very easy, but it is given me some pain. I wish to total in a
report's footer the sum of the product of two fields that is given in a
third unbound field.

How do I go about doing this?

=Sum([SomeField]*[SomeOtherField])
 
B

baraka

Sorry Rick, I have come back again. That worked fine for the section footer.
Now I would like to sum the totals of all such section footers to a grand
total, so I tried the same formula again but then on opening the report it
requested input of the text box parameters that is contained in the section
footers.

How do I go about this?

Thanks

BDSD
baraka said:
Thanks Rick. It worked

Rick Brandt said:
baraka said:
This could be very easy, but it is given me some pain. I wish to total in a
report's footer the sum of the product of two fields that is given in a
third unbound field.

How do I go about doing this?

=Sum([SomeField]*[SomeOtherField])
 
R

Rick Brandt

baraka said:
Sorry Rick, I have come back again. That worked fine for the section footer.
Now I would like to sum the totals of all such section footers to a grand
total, so I tried the same formula again but then on opening the report it
requested input of the text box parameters that is contained in the section
footers.

How do I go about this?

You should have used the exact same expression. Is that what you did? The "grand
total" aspect is achieved by where the control is placed. You should not have had to
change it at all. Also you would need to place this in the ReportFooter, not the
PageFooter. Aggregation functions do not work at the page level.
 
B

baraka

Thanks Rick.
Rick Brandt said:
You should have used the exact same expression. Is that what you did? The "grand
total" aspect is achieved by where the control is placed. You should not have had to
change it at all. Also you would need to place this in the ReportFooter, not the
PageFooter. Aggregation functions do not work at the page level.
 

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