> I'm trying to setup a query that will return all data that has been
> created 1 hour ago.
[quoted text clipped - 7 lines]
> Thanks..Anymore info need please let me know.
> Paul
SELECT *
FROM TableName
WHERE [DateField] > DateAdd("H", -1, Now())

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
pgilbert11 - 07 Sep 2006 13:37 GMT
Thanks Rick
> > I'm trying to setup a query that will return all data that has been
> > created 1 hour ago.
[quoted text clipped - 11 lines]
> FROM TableName
> WHERE [DateField] > DateAdd("H", -1, Now())