latest date

  • Thread starter Thread starter marta
  • Start date Start date
M

marta

Hello,
I have a table that has the following fields:
date, name, value1
I enter data on a daily and/or weekly basis.

How do i set the criteria for a query to pull up the
latest date entered?
thanks for your help!
Marta
 
Marta,
First, if you haven't done so already, you should name your date field
something other that Date. It can cause some confusion for Access. Second,
try the following query:

Select *
From YourTable
Where YourDateField = (Select Max(YourDatefield)
From YourTable);
 

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