![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I have a small membership program. It consists of 2 main files: 1) A Members Master file 2) A Transaction (payments received) file If a member has paid his subscription there will be an entry for him in the transaction file but if he hasn't there won't be any entry for him in the transaction file. If I need a report say for example of all those members who haven't paid their subscriptions for 2010, how do I get that ? *(as there won't be any entry for them in the transaction file). Thx & Best Rgds, Prakash. |
#3
| |||
| |||
|
|
On 7 apr, 06:44, Prakash <prakashwadhw... (AT) gmail (DOT) com> wrote: I have a small membership program. It consists of 2 main files: 1) A Members Master file 2) A Transaction (payments received) file If a member has paid his subscription there will be an entry for him in the transaction file but if he hasn't there won't be any entry for him in the transaction file. If I need a report say for example of all those members who haven't paid their subscriptions for 2010, how do I get that ? *(as there won't be any entry for them in the transaction file). Thx & Best Rgds, Prakash. Not knowing your fields, it would be something like: SELECT * FROM tblMember WHERE MemberID NOT IN (SELECT MemberID FROM tblPayment WHERE Year=2010) Groeten, Peterhttp://access.xps350.com |
![]() |
| Thread Tools | |
| Display Modes | |
| |