S
Smigidy
I have offsetting debits and credits in a query, such as shown below. How
can I ignore (delete) offsets such as this? Below is the code used to
generate the results.
Table 1
Receipt A
Amount $1000.00
Amount -$1000.00
This is the code I have:
SELECT [1].[Receipt], [1].Amount
FROM [1] LEFT JOIN [2] ON ([1].[Receipt] = [2].Receipt) AND ([1].Amount =
[2].Amount)
WHERE ((([2].Amount) Is Null));
Thanks,
Michael
can I ignore (delete) offsets such as this? Below is the code used to
generate the results.
Table 1
Receipt A
Amount $1000.00
Amount -$1000.00
This is the code I have:
SELECT [1].[Receipt], [1].Amount
FROM [1] LEFT JOIN [2] ON ([1].[Receipt] = [2].Receipt) AND ([1].Amount =
[2].Amount)
WHERE ((([2].Amount) Is Null));
Thanks,
Michael