T
Tonk
The qry COADS contains only 86 records, one for each county. The
qryScanLog contains 88 records, one for each county. I have tried all
possible joins and I cannot get 88 records to show up in the resulting
query - I get only 86. Under the join properties I specify that I want
all records in qryScanLog and those that match in qryCOADS, yet still
only end up with the 86 records in qryCOADs.
Would someone be willing to telling me what I'm doing wrong?
Thanks so much.
Mike
SELECT qryCOADS.County, qryCOADS.Records AS COADS, qryScanLog.Records
AS Harvest
FROM qryCOADS LEFT JOIN qryScanLog ON qryCOADS.County =
qryScanLog.COUNTY
WHERE (((qryCOADS.ScanGroup)="EA") AND ((qryScanLog.ScanGroup)="EA"));
qryScanLog contains 88 records, one for each county. I have tried all
possible joins and I cannot get 88 records to show up in the resulting
query - I get only 86. Under the join properties I specify that I want
all records in qryScanLog and those that match in qryCOADS, yet still
only end up with the 86 records in qryCOADs.
Would someone be willing to telling me what I'm doing wrong?
Thanks so much.
Mike
SELECT qryCOADS.County, qryCOADS.Records AS COADS, qryScanLog.Records
AS Harvest
FROM qryCOADS LEFT JOIN qryScanLog ON qryCOADS.County =
qryScanLog.COUNTY
WHERE (((qryCOADS.ScanGroup)="EA") AND ((qryScanLog.ScanGroup)="EA"));