Marshall Barton said:
The aggregate functions work just as well in the report
header section as they do in the report footer. Showing a
grand total in the page header or page footer is just a
matter of referring to a report header text box that uses
the aggregate function. I think this is what Shank is
trying to do.
However, showing a page subtotal in the page footer is a
little tricky and showing it in the page header is very
complicated.
Thanks to all that's trying to help here, but I'm still lost. I changed a
couple things. I changed the report's control source to a query. I'd like
the report detail section to resemble the looks of a spreadsheet. Imagine I
have the following columns...
[AFees] ... [BFees] ... [CFees] ... (Sum([ABCFees]) ... [SellPrice] ...
([SellPrice]-Sum([ABCFees]) <-- Report Row 1
[AFees] ... [BFees] ... [CFees] ... (Sum([ABCFees]) ... [SellPrice] ...
([SellPrice]-Sum([ABCFees]) <-- Report Row 2
[AFees] ... [BFees] ... [CFees] ... (Sum([ABCFees]) ... [SellPrice] ...
([SellPrice]-Sum([ABCFees]) <-- Report Row 3
[AFees] ... [BFees] ... [CFees] ... (Sum([ABCFees]) ... [SellPrice] ...
([SellPrice]-Sum([ABCFees]) <-- Report Row 4
[AFees] ... [BFees] ... [CFees] ... (Sum([ABCFees]) ... [SellPrice] ...
([SellPrice]-Sum([ABCFees]) <-- Report Row 5
.............................................................................
.......PROFIT = Sum([SellPrice]-Sum([ABCFees]) <-- Report Row 6
How do I make my report look like the above? I was originally trying to put
the PROFIT row in the header. That didn't work. Didn't work in the footer
either. When I put it in the detail section, it's repeated over and over for
each group. I'd be happy if I could get it under the last column like above
and shown "one-time" in the report. I know it's possible. I'm missing
something simple here I'm sure.
thanks!