Summary Totals

macca_24

New member
Local time
Today, 21:02
Joined
Apr 1, 2003
Messages
8
I have a report which displays the status of applicants, the applicants are grouped by Area of interest and then by status. There is a total for the amount of applicants in each area of interest, this is acquired by having a field in the footer of the Status grouping with the following code:
="Count of " & [Status] & " in " & [Area_Of_Interest] & " = " & Count([Reference])

The above counts the Reference Number which has been assigned to the applicant.

What I want is to also have a summary at the bottom of the report of the number of each applicant of each different Status.
The report would look like:

Status Number
Approved 4
Declined 3
Commenced 1

I have been told to use a subreport using a query which I have tried but I don't know what way to have the query.

Any suggestions...
 
Search the forum, plenty of topics to be found there.

RV
 
tried this to no avail...
 
The subreport needs to be based on the same query as the main report. Use the report wizard and create a summary only report.
 

Users who are viewing this thread

Back
Top Bottom