Find most current date in a field

  • Thread starter Thread starter dano0097
  • Start date Start date
D

dano0097

is the a way i can write a query to find the most current date in a date
released field in a table. any help would be great. thanks

-Dan
 
The most recent date in the field Released in MyTable would be:

=DMax("Released", "MyTable")
 
Back
Top