djtizzlemaster
Programmer
I want to return records where the value for the Birthday column falls in the month of March, April, or May, irrespective of the year.
Here's the criteria I'm using:
Now when I run the query, it asks me to Enter Parameter for "SalesDate." I don't know what this means, so I just typed in today's date. Then the query ran but it did not filter the results according to my criteria!
I have very little experience with Access, so please explain to me - plain and simple - why the criteria aren't working and what SalesDate is all about!
Here's the criteria I'm using:
Code:
DatePart("m", [SalesDate]) = 3
DatePart("m", [SalesDate]) = 4
DatePart("m", [SalesDate]) = 5
Now when I run the query, it asks me to Enter Parameter for "SalesDate." I don't know what this means, so I just typed in today's date. Then the query ran but it did not filter the results according to my criteria!
I have very little experience with Access, so please explain to me - plain and simple - why the criteria aren't working and what SalesDate is all about!