Curious said:
I am a new user so please help further - am I setting up two separate TABLES
Yes, two Tables.
with the same data (name, address, etc) and renaming the ID field Contributor
ID?
No, different kinds of data. If the date were the same, or quite
similar, they should all be in the same Table.
I recommend changing the default primary key name of "ID" in each table
to something unique. I usually use the name of the table with "ID" at
the end, similar to [TblContributor].[ContributorID] that PC Datasheet
suggested. My reason is that, if this field name is unique in your
database (by which I mean no other table uses the name for its own
primary key field), any other table that links to [TblContributor] can
use this same name as its foreign-key link, and it will be obvious to
you that it is a link, and obvious what table it's linking to, without
your having to look that up.
And also doing the same with a form? I used the WIzard to create my form
from my Table fields.
You have a couple of choices. You'll probably want to use a Form for
[TblContributors] and a subform for the other table; look for "Subforms:
What they are and how they work" in MS Access Help.
Or you can apply a Subdatasheet linking [TblFinancialContribution] to
[TblContributors] in Table Design View. Or you can define a Query that
displays data from [TblContributors], and apply a Subdatasheet to that
which will link the contributions to it.
My suggestion is to try a couple of these to determine which is easiest
to use.