Need a little more clarification. Do you want all the records from (as an
example 6/24/2006) through today, or do you want just the records for
6/24/2006, or some other subset?
In your query grid (I assume you are using the grid to create this query),
add the field from your database that contains the date you want to compare.
Then, in the criteria row for that field, enter something like:
=DateAdd("yyyy", -3, Date())
or
BETWEEN DateAdd("yyyy", -3, Date()) AND Date()
HTH
Dale