I'm wanting to extract records in the Comments Written table below that don't have matching WrittenID in the query qryWrittenWithMatchingPresentation.
This Select statement produces no results
I want it to show the fields for WrittenIDs 1, 2, 3, 5, 8 9 etc.
Guidance appreciated, as ever.
This Select statement produces no results
Code:
SELECT [Comments Written].EntryID, [Comments Written].Judge, [Comments Written].Category, [Comments Written].Company
FROM [Comments Written]
WHERE ((([Comments Written].[WrittenID]) Not In (Select WrittenID FROM qryWrittenWithMatchingPresentation)));
I want it to show the fields for WrittenIDs 1, 2, 3, 5, 8 9 etc.
Guidance appreciated, as ever.