Good Day,
I am currently working on Access 2007, and importing an excel spread sheet (titled master) with the date and time in the "LastCoreUpdate" column (6/13/2011 6:12:02 AM)
I created a query to run:
SELECT master.UnitID, master.softwareversion, master.LastCoreUpdate
FROM master
GROUP BY master.UnitID, master.softwareversion, master.LastCoreUpdate
HAVING (((master.softwareversion)="5.37") AND ((master.LastCoreUpdate)>Now()-"2"));
How do I get access to ignore the time and only look at the date.
Because if I run the query later in the day it gives me a different value to earlier.
Please help
I am currently working on Access 2007, and importing an excel spread sheet (titled master) with the date and time in the "LastCoreUpdate" column (6/13/2011 6:12:02 AM)
I created a query to run:
SELECT master.UnitID, master.softwareversion, master.LastCoreUpdate
FROM master
GROUP BY master.UnitID, master.softwareversion, master.LastCoreUpdate
HAVING (((master.softwareversion)="5.37") AND ((master.LastCoreUpdate)>Now()-"2"));
How do I get access to ignore the time and only look at the date.
Because if I run the query later in the day it gives me a different value to earlier.
Please help