Ok, this is what I have come up with so far:
SELECT DISTINCTROW tblOne.*
FROM ((tblOne LEFT JOIN tblTwo ON [tblOne].[item1]=[tblTwo].[item2]) LEFT JOIN tblThree ON [tblOne].[item1]=[tblThree].[item3]) LEFT JOIN tblFour ON [tblOne].[item1]=[tblFour].[item4]
WHERE (((DatePart("m",[Date]))=[Enter Month]) And (([tblThree].[item3]) Is Null) And (([tblFour].[item4]) Is Null) And (([tblTwo].[item2]) Is Null));
It runs, but I'm not sure that I'm getting the correct result. Is there a logic error somewhere?
PS. Not really sure how to do subqueries - I'd appreciate a little explanation
Or, I could try and learn about them on the weekend... if I get time :-/.
Thanks for the help so far.
-Sheist
SELECT DISTINCTROW tblOne.*
FROM ((tblOne LEFT JOIN tblTwo ON [tblOne].[item1]=[tblTwo].[item2]) LEFT JOIN tblThree ON [tblOne].[item1]=[tblThree].[item3]) LEFT JOIN tblFour ON [tblOne].[item1]=[tblFour].[item4]
WHERE (((DatePart("m",[Date]))=[Enter Month]) And (([tblThree].[item3]) Is Null) And (([tblFour].[item4]) Is Null) And (([tblTwo].[item2]) Is Null));
It runs, but I'm not sure that I'm getting the correct result. Is there a logic error somewhere?
PS. Not really sure how to do subqueries - I'd appreciate a little explanation
Thanks for the help so far.
-Sheist