Criteria for current month, current year

G

Guest

We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to Month(Now()).
This has worked fine up until now, but now that we have got into the second
year with the system it is picking up inquiries from last September well as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?
Many thanks
CW
 
K

Ken Snell \(MVP\)

There are at least two different ways to do this:

SELECT * FROM TableName
WHERE [Inquiry Date] Between DateSerial(Year(Now()), Month(Now()), 1)
AND DateSerial(Year(Now()), Month(Now()) + 1, 0);

or

SELECT * FROM TableName
WHERE Format([Inquiry Date],"yyyymm") =
Format(Now(), "yyyymm");
 
M

Marshall Barton

CW said:
We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to Month(Now()).
This has worked fine up until now, but now that we have got into the second
year with the system it is picking up inquiries from last September well as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?


Unless your date field is a Text field, date/time values are
stored using a Double type value and have nothing to do with
your format settings.

You can add another criteria to check the month and year
Yr: Year([Inquiry Date])
= Year(Date())
Mo: Month([Inquiry Date])
= Month(Date())

Or you can format the date to a comparable value:
YrMo: Format([Inquiry Date], "yyyymm")
= Format(Date(), "yyyymm")
 
G

Guest

Thanks Ken, I pasted the first one into my query but I get an error message:
"Syntax error, missing operator in expression"
Any thoughts as to what is needed?
Thanks again
CW

Ken Snell (MVP) said:
There are at least two different ways to do this:

SELECT * FROM TableName
WHERE [Inquiry Date] Between DateSerial(Year(Now()), Month(Now()), 1)
AND DateSerial(Year(Now()), Month(Now()) + 1, 0);

or

SELECT * FROM TableName
WHERE Format([Inquiry Date],"yyyymm") =
Format(Now(), "yyyymm");


--

Ken Snell
<MS ACCESS MVP>



CW said:
We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to
Month(Now()).
This has worked fine up until now, but now that we have got into the
second
year with the system it is picking up inquiries from last September well
as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?
Many thanks
CW
 
K

Ken Snell \(MVP\)

Did you change TableName to the actual name of the table? Post the actual
SQL that you tried and that gave you the syntax error.

--

Ken Snell
<MS ACCESS MVP>


CW said:
Thanks Ken, I pasted the first one into my query but I get an error
message:
"Syntax error, missing operator in expression"
Any thoughts as to what is needed?
Thanks again
CW

Ken Snell (MVP) said:
There are at least two different ways to do this:

SELECT * FROM TableName
WHERE [Inquiry Date] Between DateSerial(Year(Now()), Month(Now()), 1)
AND DateSerial(Year(Now()), Month(Now()) + 1, 0);

or

SELECT * FROM TableName
WHERE Format([Inquiry Date],"yyyymm") =
Format(Now(), "yyyymm");


--

Ken Snell
<MS ACCESS MVP>



CW said:
We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK
format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to
Month(Now()).
This has worked fine up until now, but now that we have got into the
second
year with the system it is picking up inquiries from last September
well
as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?
Many thanks
CW
 
K

Ken Snell \(MVP\)

If you're using the design view (grid) for the query, use this as the
Criterion expression for the Inquiry Date field:

Between DateSerial(Year(Now()), Month(Now()), 1) AND DateSerial(Year(Now()),
Month(Now()) + 1, 0)

--

Ken Snell
<MS ACCESS MVP>



CW said:
Thanks Ken, I pasted the first one into my query but I get an error
message:
"Syntax error, missing operator in expression"
Any thoughts as to what is needed?
Thanks again
CW

Ken Snell (MVP) said:
There are at least two different ways to do this:

SELECT * FROM TableName
WHERE [Inquiry Date] Between DateSerial(Year(Now()), Month(Now()), 1)
AND DateSerial(Year(Now()), Month(Now()) + 1, 0);

or

SELECT * FROM TableName
WHERE Format([Inquiry Date],"yyyymm") =
Format(Now(), "yyyymm");


--

Ken Snell
<MS ACCESS MVP>



CW said:
We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK
format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to
Month(Now()).
This has worked fine up until now, but now that we have got into the
second
year with the system it is picking up inquiries from last September
well
as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?
Many thanks
CW
 
G

Guest

OK, that's got it, working nicely now!
Thanks a lot, Ken.

Ken Snell (MVP) said:
If you're using the design view (grid) for the query, use this as the
Criterion expression for the Inquiry Date field:

Between DateSerial(Year(Now()), Month(Now()), 1) AND DateSerial(Year(Now()),
Month(Now()) + 1, 0)

--

Ken Snell
<MS ACCESS MVP>



CW said:
Thanks Ken, I pasted the first one into my query but I get an error
message:
"Syntax error, missing operator in expression"
Any thoughts as to what is needed?
Thanks again
CW

Ken Snell (MVP) said:
There are at least two different ways to do this:

SELECT * FROM TableName
WHERE [Inquiry Date] Between DateSerial(Year(Now()), Month(Now()), 1)
AND DateSerial(Year(Now()), Month(Now()) + 1, 0);

or

SELECT * FROM TableName
WHERE Format([Inquiry Date],"yyyymm") =
Format(Now(), "yyyymm");


--

Ken Snell
<MS ACCESS MVP>



We started using our database last September(2006).
We have an Inquiry Date for each of our jobs, which is stored in UK
format
as (for example) 07/09/2007.
I have a query that displays details of inquiries taken in the current
month, so in the Inquiry Date column I have the criteria set to
Month(Now()).
This has worked fine up until now, but now that we have got into the
second
year with the system it is picking up inquiries from last September
well
as
the current ones, so I need to filter those out.
Could somebody advise how I should modify the criteria, please?
Many thanks
CW
 

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

Top