eckert1961
Registered User.
- Local time
- Yesterday, 18:26
- Joined
- Oct 25, 2004
- Messages
- 90
Count Dates within Date Range Problem.
Hello,
I have the following query that I need some assistance with.
What I want to do is to also have a count of the tblAttendance.AttendanceDate between the Start and End date range.
Thanks in advance.
Chris
Hello,
I have the following query that I need some assistance with.
Code:
SELECT [LastName] & ", " & [FirstName] AS [Student Name], Count(tblAttendance.AttendanceDate) AS Attendance, GetDays([Enter Start Date],[Enter End Date],"46") AS [Total Classes], Members.Active
FROM Members INNER JOIN tblAttendance ON Members.MemberID = tblAttendance.MemberID
GROUP BY [LastName] & ", " & [FirstName], GetDays([Enter Start Date],[Enter End Date],"46"), Members.Active
HAVING (((Members.Active)=Yes));
What I want to do is to also have a count of the tblAttendance.AttendanceDate between the Start and End date range.
Thanks in advance.
Chris
Last edited: