O
Opal
I am trying to create a sub-query from which to base a report. I want
the sub-query
to show items from a table that are not in a separate query. When I
run the sub-query
I get no results but I have checked the data and I should be....could
someone tell
me what I might be missing? Below is the SQL statement from the query:
SELECT AShift.AShiftIDNumber, AShift.EntryDate, AShift.Panel,
AShift.Rank, AShift.Concern, AShift.Comments
FROM AShift
WHERE (((Exists (Select ConcernCompareqry.AShiftIDNumber FROM
ConcernCompareqry WHERE ConcernCompareqry.AShiftIDNumber =
AShift.AShiftIDNumber))=False));
the sub-query
to show items from a table that are not in a separate query. When I
run the sub-query
I get no results but I have checked the data and I should be....could
someone tell
me what I might be missing? Below is the SQL statement from the query:
SELECT AShift.AShiftIDNumber, AShift.EntryDate, AShift.Panel,
AShift.Rank, AShift.Concern, AShift.Comments
FROM AShift
WHERE (((Exists (Select ConcernCompareqry.AShiftIDNumber FROM
ConcernCompareqry WHERE ConcernCompareqry.AShiftIDNumber =
AShift.AShiftIDNumber))=False));