Ok, I have worked this query up one side and down the other. It's simple, so it shouldn't be giving me so many problems!
All I want is a query that doesn't show anything with a status of "Closed", "Cancelled" or "Unfunded"
Here's my query...
SELECT Issues.*
FROM Issues
WHERE (((Issues.Status)<>"Closed")) OR (((Issues.Status)<>"Cancelled")) OR (((Issues.Status)<>"Unfunded"))
ORDER BY Issues.Status, Issues.Priority, Issues.Due_Date;
Every time I run this in Access 2007, it doesn't return closed, but it does return cancelled and unfunded?
So, what something small and stupid did I do wrong?
Any help would be appreciated!
All I want is a query that doesn't show anything with a status of "Closed", "Cancelled" or "Unfunded"
Here's my query...
SELECT Issues.*
FROM Issues
WHERE (((Issues.Status)<>"Closed")) OR (((Issues.Status)<>"Cancelled")) OR (((Issues.Status)<>"Unfunded"))
ORDER BY Issues.Status, Issues.Priority, Issues.Due_Date;
Every time I run this in Access 2007, it doesn't return closed, but it does return cancelled and unfunded?
So, what something small and stupid did I do wrong?
Any help would be appreciated!