Okay, the suggestion was to use a form to display the results.
Instead of putting the criteria in the query, use the Filter of the form.
If you want to put it into the Criteria of your query, under the date/time
field, try:
Between DateSerial([StartYear], 1,1) And DateSerial([EndYear],12,31)
When you run the query it will pop up 2 boxes asking for the StartYear and
EndYear.
To ensure only Numbers can be entered as the years, choose Parameters on the
Query menu (in query design view). Access opens a dialog. Enter 2 rows,
using exactly the same spelling and specify the Long Integer type, i.e.:
[StartYear] Long
[EndYear] Long

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Thank you Allen!
>
[quoted text clipped - 43 lines]
>> >
>> > Any tips??