I have recreated the query an find 92 records in table Initial_Information that are not in Date_Closed based on the Case_Number.
Code:
SELECT Initial_Information.Case_Number
, Initial_Information.DATE_OF_INITIAL_CONTACT
, Initial_Information.NATURE_OF_COMPLAINT
, Date_Closed.Case_Number
, Initial_Information.PROJECT_ADDRESS
, Initial_Information.[PROACTIVE - REACTIVE]
, Initial_Information.Zone
FROM Initial_Information LEFT JOIN Date_Closed ON
Initial_Information.Case_Number = Date_Closed.Case_Number
WHERE (((Date_Closed.Case_Number) Is Null));
If there is more to your criteria than you have discussed, please tell us.
Which records are these?
I still find find 13 common records which should not be returned in the query.