I wanted to create a query that will search the table for all non "OK" values:SELECT Checks.[GDay], Checks.[RCheck] AS [Error Type], "R" AS ContractFROM Checks WHERE (((Checks.[GDay])>=#10/1/2006#) AND ((Checks.[RCheck])<>"OK"))
This part is fine but then I need to check if this error was already explained or it is new.SELECT ErrorTable.[GDay], ErrorTable.[Errortype] AS [Error Type], "RCheck registered" AS ContractFROM ErrorTableWHERE (((ErrorTable.[GDay])>=#10/1/2006#) AND ((ErrorTable.[Contract])="R") AND ((ErrorTable.[Condition])<>"resolved"))
The last part would be to list only errors that have not been already explained. So effectively if one of the results of query 1 is also appearing as a result of query 2 it should not be listed. I do not know how to do this. Can anyone help?