Hi All
Hope you are well..
I am trying to run a query between a tbl and another querie, the problem I am having is that I would like to show the records where 2 date fields match. The one has a format Short date & the other has Date/Time, I just want to match the dates and not the time, any ideas??
Here is the code I am using:
SELECT tblTracking.PortfolioCode, tblTracking.RunDeadline, qrybAttn.Action, qrybAttn.Date
FROM tblTracking INNER JOIN qrybAttn ON tblTracking.TrackingID = qrybAttn.TrackingID
WHERE (((tblTracking.RunDeadline)<Now()) AND ((qrybAttn.Date)=[RunDeadline]))
WITH OWNERACCESS OPTION;
Thanks in advance!!!!!!
Cheers
Mark
Hope you are well..
I am trying to run a query between a tbl and another querie, the problem I am having is that I would like to show the records where 2 date fields match. The one has a format Short date & the other has Date/Time, I just want to match the dates and not the time, any ideas??
Here is the code I am using:
SELECT tblTracking.PortfolioCode, tblTracking.RunDeadline, qrybAttn.Action, qrybAttn.Date
FROM tblTracking INNER JOIN qrybAttn ON tblTracking.TrackingID = qrybAttn.TrackingID
WHERE (((tblTracking.RunDeadline)<Now()) AND ((qrybAttn.Date)=[RunDeadline]))
WITH OWNERACCESS OPTION;
Thanks in advance!!!!!!
Cheers
Mark