I have a table that looks like this:
(PK)
Auto Number Date Submitted(checkbox) <----fields
1 11 5/05/2005 Y (Y=checked, N=unchecked)
2 22 6/25/2005 Y
3 22 6/27/2005 N
4 22 4/30/2005 N
5 03 7/01/2005 N
6 14 6/30/2005 N
7 05 4/13/2005 N
8 05 3/28/2005 Y
I want to create a query that will display all records that do not have the checkbox checked. The kicker is: Some of these records have the same number (example: 22). One of the 3 records that have the number 22 is checked(Y). I want the query to eliminate all 22's.
This query should display:
Number Date
03 7/01/2005
14 6/30/2005
All others will be eliminated because at some point in time they were checked. I hope this is all clear enough.
(PK)
Auto Number Date Submitted(checkbox) <----fields
1 11 5/05/2005 Y (Y=checked, N=unchecked)
2 22 6/25/2005 Y
3 22 6/27/2005 N
4 22 4/30/2005 N
5 03 7/01/2005 N
6 14 6/30/2005 N
7 05 4/13/2005 N
8 05 3/28/2005 Y
I want to create a query that will display all records that do not have the checkbox checked. The kicker is: Some of these records have the same number (example: 22). One of the 3 records that have the number 22 is checked(Y). I want the query to eliminate all 22's.
This query should display:
Number Date
03 7/01/2005
14 6/30/2005
All others will be eliminated because at some point in time they were checked. I hope this is all clear enough.