ChrisCione
Board Regular
- Joined
- Aug 27, 2008
- Messages
- 92
- Office Version
- 365
- Platform
- Windows
All records in my mdb are assigned 1 of 3 statuses: Pending, Active or Closed.
In the header of one of my main reports, I have 3 unbound textboxes to display the count of records for each status. For example, =Sum(IIf([RecruitmentStatus]="Closed",1,0)) and so on.
Here's what I am trying to accomplish:
While I want to show the count of records for EACH status (Pending, Active or Closed), I do NOT want to print any of the records in a Closed status.
In the query (the record source for the report), I unchecked "Show" for the Closed status, but it then will not count any of the closed records. I tried changing the report record source to the table, but I get the same results. If I filter out the Closed records, then it will not count.
I've spent a considerable amount of time Googling and have tried On Load and On Open Filters - all to no avail.
Is my ask possible?
In the header of one of my main reports, I have 3 unbound textboxes to display the count of records for each status. For example, =Sum(IIf([RecruitmentStatus]="Closed",1,0)) and so on.
Here's what I am trying to accomplish:
While I want to show the count of records for EACH status (Pending, Active or Closed), I do NOT want to print any of the records in a Closed status.
In the query (the record source for the report), I unchecked "Show" for the Closed status, but it then will not count any of the closed records. I tried changing the report record source to the table, but I get the same results. If I filter out the Closed records, then it will not count.
I've spent a considerable amount of time Googling and have tried On Load and On Open Filters - all to no avail.
Is my ask possible?