I want to limit the data on a form or report to only the last quarter
Try this --
SELECT [YourTable].*
FROM [YourTable]
WHERE ([WorkDate] <=
DateAdd("q",Format(Date(),"q")-1,DateSerial(Year(Date()),1,1))-1) And
([WorkDate]
Create a calculated field and format it to quarter.
You can create another one and format it for the year.
Then it's just a query with Date() formatted for the same things.
Now it's your turn. Free legal advice.
If I sue myself, do I need two attorney's?
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.