Date query

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

Guest

I want to make a date query. I have multiple records that are the same
except with different dates. How would I write a query that would display
the last date? So in the query table there would be a single record with the
latest date.

Thanks
glnbnz
 
Thank you very much that worked very well.

glnbnz

Dale Fye said:
SELECT MAX([DateField]) as LatestDate
FROM yourTable

HTH
Dale
--
Email address is not valid.
Please reply to newsgroup only.


glnbnz said:
I want to make a date query. I have multiple records that are the same
except with different dates. How would I write a query that would display
the last date? So in the query table there would be a single record with the
latest date.

Thanks
glnbnz
 

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