I hope someone can explain why and what I need to do. I have an Access report that my users want exported to an excel spreadsheet.
The report contains the following structure:
Report Header
Detail Header
---------
Detail
Detail
Detail
---------
Detail Footer with Totals
Detail Header
---------
Detail
Detail
---------
Detail Footer with Totals
The detail totals for each section have eight columns with totals, all formals:
Qty Mailed: =Sum([Qty Mailed])
Qty Ordered: =Sum([Qty Ordered])
IncPc: =Sum([DIncome])/Sum([Qty Mailed])
CostPc: =Sum([DCosta])/Sum([Qty Mailed])
Net/Pc: =Sum([Dincome]-[DCosta])/[QtyMail]
LCost/Pc: =Sum([TLCost/Pc])/Sum([Qty Mailed])
Avg Gift: =Sum([DIncome])/Sum([Donors])
& Resp: =(Sum([Donors])/Sum([Qty Mailed]))*100
The report on paper works perfectly. If I try to export the report to excel, it opens in excel formatted correctly, however, totals for each detail section only show in the first two columns. The remaining six columns are empty on the excel sheet. All eight are formulas and I do understand that only the result will show, which is exactly what I want.
I tried everything I can thing of including starting a new database with just data and a new, simpler version, of the the report. I still only get totals results in the first two columns.
This is work data so I cannot share it but if you need more info please ask and I'll see what I can come up with.
I need to know:
1) what am I missing or
2) Is access unable to provide results for more than two columns.