Hi again,
I need some help to count the number of people who worked in a month.
I have a table similar to the below. note date format is dd/mm/yyyy
<tbody>
</tbody>
I want my query to show
# of Staff in Month
January 2
February 1
Where January equals Tim and Jane (2) and February equals Tim (1) so on and so forth.
The names pull from a "Staff" Table I have to populate a combo box on an entry form.
Thanks again for the help in advance.
Jay
I need some help to count the number of people who worked in a month.
I have a table similar to the below. note date format is dd/mm/yyyy
Date | Who | Task 1 | Task 2 | Task 3 |
01/01/2012 | Tim | 50 | 10 | 2 |
01/01/2012 | Jane | 10 | 20 | 50 |
02/01/2012 | Tim | 90 | 0 | 0 |
02/02/2012 | Tim | 50 | 8 | 22 |
<tbody>
</tbody>
I want my query to show
# of Staff in Month
January 2
February 1
Where January equals Tim and Jane (2) and February equals Tim (1) so on and so forth.
The names pull from a "Staff" Table I have to populate a combo box on an entry form.
Thanks again for the help in advance.
Jay