J
James
My report will only filter if there is no time and the date is the same. Is
there a way to put in datevalue([PUDate]) so that it show all of the records
even if there is a time? And then on the frmDriver how do I tell it to show
all of January 2003 etc. is there a way to select the months from a grouped
dropbox list of just month and year. Or do I have to have the start date
and end dates.
SELECT Calendar.CalDate, tblEvents.DODate, tblEvents.PUDate,
tblEvents.TotalHours, tblEvents.rndhours, tblEvents.LimoID,
tblEvents.EmployeeID
FROM Calendar LEFT JOIN tblEvents ON Calendar.CalDate = tblEvents.PUDate
WHERE (((tblEvents.EmployeeID) Is Null Or
(tblEvents.EmployeeID)=[forms]![frmDriver]![cmbDriver]))
GROUP BY Calendar.CalDate, tblEvents.DODate, tblEvents.PUDate,
tblEvents.TotalHours, tblEvents.rndhours, tblEvents.LimoID,
tblEvents.EmployeeID;
there a way to put in datevalue([PUDate]) so that it show all of the records
even if there is a time? And then on the frmDriver how do I tell it to show
all of January 2003 etc. is there a way to select the months from a grouped
dropbox list of just month and year. Or do I have to have the start date
and end dates.
SELECT Calendar.CalDate, tblEvents.DODate, tblEvents.PUDate,
tblEvents.TotalHours, tblEvents.rndhours, tblEvents.LimoID,
tblEvents.EmployeeID
FROM Calendar LEFT JOIN tblEvents ON Calendar.CalDate = tblEvents.PUDate
WHERE (((tblEvents.EmployeeID) Is Null Or
(tblEvents.EmployeeID)=[forms]![frmDriver]![cmbDriver]))
GROUP BY Calendar.CalDate, tblEvents.DODate, tblEvents.PUDate,
tblEvents.TotalHours, tblEvents.rndhours, tblEvents.LimoID,
tblEvents.EmployeeID;