here's a basic table/relationship design that should help you get started:
tblChurches
cID (primary key, autonumber)
cName
cAddressOne
cAddressTwo
cCity
cState
cZip
the above assumes each church has one address. but if a church may have one
or more satellite locations (such as a community outreach center, etc), then
you should have a separate table for "sites", that includes a field
indicating the name and/or type of location and all the address
information - instead of putting address information in tblChurches.
tblChurchComms (that's short for communications)
ccID (primary key, autonumber)
cc_cIDfk (foreign key from tblChurches, long integer)
ccLoc (location of phone, such as office, rectory, etc.)
ccNumber (phone number)
i'm assuming a church may have more than one phone number. if that is
*never* the case, you can ignore this table altogether and just put a phone
number field in tblChurches. if a single church may have multiple "sites",
as discussed above, then you'll need to consider if each site may have one
or more phone numbers.
tblWorships
wID (primary key, autonumber)
w_cIDfk (foreign key from tblChurches, long integer)
wDay (day of week)
wServiceType (such as Sunday School, Early Mass, Benediction, Bible Study)
wStart (time the service starts)
wEnd (time the service ends)
here again, if a single church has more than one "site" that holds worship
services, this table should be linked to the "sites" table rather than to
tblChurches.
tblChurchOfficers
coID (primary key, autonumber)
co_cIDfk (foreign key from tblChurches)
coFirst (first name)
coLast (last name)
coAddressOne
coAddressTwo
coCity
coState
coZip
coTitle
tblOfficerComms
ocID (primary key, autonumber)
oc_coIDfk (foreign key from tblChurchOfficers, long integer)
ocType (such as home phone, work phone, cell phone, email)
ocNumber (phone number - text field, not numeric)
as you can see from the remarks scattered between the "demo" tables above,
you have to carefully analyze the data you want to include in the database
*before* you start to design the tables/relationships. most databases *seem*
simpler than they turn out to be, once you begin to really consider every
aspect of the data.
you didn't indicate what experience you have in data modeling, or in
building Access databases, Don. if you begin to feel out of your depth, i'll
be happy to give you a hand with it (and if you're an experienced user, then
no offense intended!)
hth