EmployeeID and Work Date

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

How can i find the number of employees who are on the same date?
EmployeeID >"2" and Work Date that is the same?

EmployeeID and Work Date are the control sources in my query
 
not sure just what you're after, but you might try a Totals query, grouping
on the date field, and counting the EmployeeID field.

hth
 
=Dcount([EmployeeID], "MyTableName", [EmployeeId] > '2' And [WorkDate] =
#??/??/????#)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top