R
rivrlane
I'm designing a database for a dog club. I started off with something
like
tblMembers
- autoindex
- name, address, phone. etc
- 2008 payment amount
- 2008 check number
- 2008 other accounting info
When I did the queries for the various reports, it seemed like the
changes from year to year would be messy. A better approach seemed
like
tblMemebers
- autoindex
- name address, phone, etc
tbl2008Account
- currentYr amount
- checkNumber
- other accounting fields
The assumption is that there would be a 2009 table for the next years
data.
This works great from the standpoint of my queries and reports. I can
move to a new year with just a few changes. But I can't quite figure
out how to get the two databases properly linked. I understand that
this is a one-to-one linkage, but I'm not clear what to use for the
2008Account key, nor what relationship settings to use.
Any help would be appreciated!
Greg
like
tblMembers
- autoindex
- name, address, phone. etc
- 2008 payment amount
- 2008 check number
- 2008 other accounting info
When I did the queries for the various reports, it seemed like the
changes from year to year would be messy. A better approach seemed
like
tblMemebers
- autoindex
- name address, phone, etc
tbl2008Account
- currentYr amount
- checkNumber
- other accounting fields
The assumption is that there would be a 2009 table for the next years
data.
This works great from the standpoint of my queries and reports. I can
move to a new year with just a few changes. But I can't quite figure
out how to get the two databases properly linked. I understand that
this is a one-to-one linkage, but I'm not clear what to use for the
2008Account key, nor what relationship settings to use.
Any help would be appreciated!
Greg