I have these two tables:
CHECKS [1:M] RECEIPTS
checkNumber (PK) receiptID (PK - autonumber)
checkAmount checkNumber (FK)
checkDate receiptAmount
I would like a single table with the following 3 columns:
Checks.checkNumber, Checks.checkAmount, Sum(Receipts.receiptAmount)
*Each check should only be listed once
Thanks in advance for any help you could give me.
-kevin
CHECKS [1:M] RECEIPTS
checkNumber (PK) receiptID (PK - autonumber)
checkAmount checkNumber (FK)
checkDate receiptAmount
I would like a single table with the following 3 columns:
Checks.checkNumber, Checks.checkAmount, Sum(Receipts.receiptAmount)
*Each check should only be listed once
Thanks in advance for any help you could give me.
-kevin