IF your record datetime field has the cutoff date and time then use
SELECT Stuff.*
FROM STUFF
WHERE Stuff.DateAndTime > DateAdd('h",8,Date())
OR
If your record datetime field only has the cutoff date then use
SELECT Stuff.*
FROM STUFF
WHERE Stuff.DateAndTime > DateAdd('h",-8,Date())

Signature
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
.
>I need my query to remove all records from view (not show) with a specific
> deadline date at 8:01 am in the morning on that particular date EACH day.
[quoted text clipped - 30 lines]
> graciously
> for any input.
DTNHRD - 08 Feb 2008 21:54 GMT
Thank you so much. I should have known that! Most appreciated.
> IF your record datetime field has the cutoff date and time then use
>
[quoted text clipped - 43 lines]
> > graciously
> > for any input.