Today is not my day to be working in Access…..
I have a report with 2 footers with totals and a report footer with grand totals. The first footer happens when there is a change in audit #, it total the number of records and amounts. It also totals if there is a Status of open and a date field is blank. =IIf([status]=”open” And IsNull([rebuttaldate]),1,0). This works great. I also have the fields running sum = over group.
My next footer happens when there is a change in Company (each company can have more than one audit). This is where my problem is…my totals are not working here.
My grand total footer is working as well…fields = running sum – over all.
How to I get my total by company to work??? I have created fields in my detail area to count and add the amount. Again for audit the field would have =IIf([status]=”open” And IsNull([rebuttaldate]),1,0) with runnin sum – over group and in my report footer =IIf([status]=”open” And IsNull([rebuttaldate]),1,0) with running sum = over all. all the fields are created in my detail area.
Help….