T
Trauton
Hi,
The query below selects the records existing in Table A which have no
matches in Table B. I use this query every month without problem. This
month however when I run the query get the following error mesage: "Invalid
Operation". I checked in the Help button of the error message and got Error
3219.
SELECT qryTableA.ProjectID, qryTableA.Customer, qryTableA.DealDescription,
qryTableA.User_Name, qryTableA.DateBDCompleted, qryTableA.Status,
qryTableA.OppType
FROM qryTableA LEFT JOIN qryTableB ON qryTableA.ProjectID =
qryTableB.Deals.PROJECTID
WHERE (((qryTableB.Deals.PROJECTID) Is Null));
I have checked that all the individual queries run fine and I can even
select the matching records between the two queries, however when I try to do
the left join I get the error message listed above.
I would REALLY appreciate any suggestions.
Regards,
Trauton
The query below selects the records existing in Table A which have no
matches in Table B. I use this query every month without problem. This
month however when I run the query get the following error mesage: "Invalid
Operation". I checked in the Help button of the error message and got Error
3219.
SELECT qryTableA.ProjectID, qryTableA.Customer, qryTableA.DealDescription,
qryTableA.User_Name, qryTableA.DateBDCompleted, qryTableA.Status,
qryTableA.OppType
FROM qryTableA LEFT JOIN qryTableB ON qryTableA.ProjectID =
qryTableB.Deals.PROJECTID
WHERE (((qryTableB.Deals.PROJECTID) Is Null));
I have checked that all the individual queries run fine and I can even
select the matching records between the two queries, however when I try to do
the left join I get the error message listed above.
I would REALLY appreciate any suggestions.
Regards,
Trauton