Say you have a text box with ControlSource of:
=[Quantity] * [PriceEach]
In the Report Footer section, use:
=Sum([Quantity] * [PriceEach])
Alternatively, create a calculated field in the query that feeds the report,
by typing an expression like this into the Field row in query design:
Amount: [Quantity] * [PriceEach]
This gives you a field you can then sum in the report.
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.