I'm setting up a Database for employees. Some are Full Time others Part Time. My Report lists employees by Department and shows their status (Full time or Part Time).
I want to be able to count:
1) all personnel in the Department
2) only those in the Department who are Full Time
3) only those in the Department who are Part Time.
To count all personnel is not the problem. I use the following:
=Count([StaffStatus])
To do a selective count is the problem. I've tried the following: =Count([StaffStatus]="FullTime"
=Count([StaffStatus])-Count([StaffStatus]="PartTime"
These don't work for me. They count the total entries, regardless of whether they are Full Time or Part Time.
I put the "count" code in the Sector Footer of the Report
Please Help!
I want to be able to count:
1) all personnel in the Department
2) only those in the Department who are Full Time
3) only those in the Department who are Part Time.
To count all personnel is not the problem. I use the following:
=Count([StaffStatus])
To do a selective count is the problem. I've tried the following: =Count([StaffStatus]="FullTime"
=Count([StaffStatus])-Count([StaffStatus]="PartTime"
These don't work for me. They count the total entries, regardless of whether they are Full Time or Part Time.
I put the "count" code in the Sector Footer of the Report
Please Help!