gojets1721
Registered User.
- Local time
- Today, 00:13
- Joined
- Jun 11, 2019
- Messages
- 430
I have a query that looks at the last 2 years of records based on the 'SubmissionDate' field. Below is the SQL:
I want to use this query as the source for a second one, but one where the current quarter's records are filtered out.
Any suggestions on how to code that?
Code:
SELECT *
FROM qryAllComplaints
WHERE (((Year([SubmissionDate]))>=(Year(Date())-1)))
ORDER BY SubmissionDate;
I want to use this query as the source for a second one, but one where the current quarter's records are filtered out.
Any suggestions on how to code that?