I have a main report and 3 subreports. I have used running totals to count records in the subreports and return them to the main report using shared variables. I now want to sort the resulting data on one of the formula fields but I get the error "field cannot be summarized".
I am using CR11 and MSAccess.
My first subreport called "updates" is grouped and linked on fullname. The grouped records are counted by running total and I have created the following formula:
The main report has the following formula called "showupdates":
How do I sort on this field?
I am using CR11 and MSAccess.
My first subreport called "updates" is grouped and linked on fullname. The grouped records are counted by running total and I have created the following formula:
Code:
WhilePrintingRecords;
Shared numbervar countupdates:={#RTotal0}
The main report has the following formula called "showupdates":
Code:
WhilePrintingRecords;
Shared numbervar countupdates;
countupdates
How do I sort on this field?