I have this little snippet that is giving me grief...
SELECT Subject, Status, DateCompleted, Categories FROM tblOL_Tasks
WHERE (((DateCompleted)>#9/1/200
7#) AND ((Categories)="_N-UACit"))
OR (status)<>"completed" AND ((Categories)="_N-UACit");
Intent...
Simply - I need to show all items that have a completed date > 9/1/2007 for a specific assigned category OR any items that have not been completed for the same category. Either criteria works on its own but when together the date filter just does not work. Any idea as to why? I need to be able to filter both parameters within this query.
Start Free Trial