I record all entries of payment from members. We have a yearly fee that needs to be paid to continue being a member. How do I get a list of those who have not paid?
I have an Access database with 2 tables.
MembersTable
MemberID
Name
Address
LifeMember = Boolean
Ledger Table
Id
MemberID
LedgerNum
CheckNum
DateStamp
AMT
Description
The Description field is only allowed certain description. “Dues Paid” is one of them…
I want to make a query that shows what members have not paid their dues? I need the query to...
Select MemberID from TblLedger where Description = “Dues Paid”
Now how do I take those results and compare the MemberID’s to my MembersTable and get the remaining Members? Also if the Lifemember field in the MembersTable is true then they do not need to pay and as a result would not have a ledger indicating that payment was collected.
Please let me know if you think the table structure could have been created differently to suit my purpose of tracking down non payers!!
Thanks for the help in advance!
I have an Access database with 2 tables.
MembersTable
MemberID
Name
Address
LifeMember = Boolean
Ledger Table
Id
MemberID
LedgerNum
CheckNum
DateStamp
AMT
Description
The Description field is only allowed certain description. “Dues Paid” is one of them…
I want to make a query that shows what members have not paid their dues? I need the query to...
Select MemberID from TblLedger where Description = “Dues Paid”
Now how do I take those results and compare the MemberID’s to my MembersTable and get the remaining Members? Also if the Lifemember field in the MembersTable is true then they do not need to pay and as a result would not have a ledger indicating that payment was collected.
Please let me know if you think the table structure could have been created differently to suit my purpose of tracking down non payers!!
Thanks for the help in advance!