N
Nathan
I am trying to do a query on a set of dates which I am
having trouble with. The query purpose is to check the
dates in the database against the current date and then
display only the records with valid dates.
The criteria I am using and which I believe to be correct
is:
This expression is typed incorrectly, or it is too complex
to be evaluated. For example, a numeric expression may
contain too many complicated elements. Try simplifying the
expression by assigning parts of the expression to
variables. (Error 3071)
The SQL for the query is:
SELECT CON.Name, CON.[CIS Status], CON.[CIS Expiry Date],
CON.Approved, CON.Comments
FROM CON
WHERE (((CON.[CIS Expiry Date])>Date()));
Please help.
having trouble with. The query purpose is to check the
dates in the database against the current date and then
display only the records with valid dates.
The criteria I am using and which I believe to be correct
is:
It is however bringing up the following error:Date()
This expression is typed incorrectly, or it is too complex
to be evaluated. For example, a numeric expression may
contain too many complicated elements. Try simplifying the
expression by assigning parts of the expression to
variables. (Error 3071)
The SQL for the query is:
SELECT CON.Name, CON.[CIS Status], CON.[CIS Expiry Date],
CON.Approved, CON.Comments
FROM CON
WHERE (((CON.[CIS Expiry Date])>Date()));
Please help.