Search for dates in future

  • Thread starter Thread starter Guest
  • Start date Start date
Assuming that you mean within 90 days in the future, in the criteria for the
expiry date field, put:
=Date() And <DateAdd("d",Date(),90)

If you want those within the past 90 days, use
<=Date() And >DateAdd("d",Date(),-90)

HTH,

Rob
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top