Query error

N

Nathan

I am trying to run a query which compares a list of dates
with the current date in order to filter them into valid
dates only. The criteria I am using is: < Date()
I have used this before and it has worked but now it
brings up the error:
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)

Any help would be appreciated
 
N

Nathan

SELECT CON.Name, CON.[CIS Status], CON.[CIS Expiry Date],
CON.Approved, CON.Comments
FROM CON
WHERE (((CON.[CIS Expiry Date])>Date()));
 

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