criteria

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i want to create a criteria that will only pull up records that come after
the current date. i don't want it to pull up records from yesterday.
I'm not sure on the coding for this. Can anyone help?
 
"after the current date" and "don't want... records from yesterday" are two
different requirements since they don't address today the same. You can use
Date() in your query criteria. Perhaps something like:
Date() or
=Date()
If you date field contains the time portion then you will possibly need to
account for it.
 
Back
Top