S
stgpatrick
Hello,
I am trying to develop a "Record Keeping" database. The purpose of this
database is merely to print one report that lists all of my important and
pertinent information upon my disability/death. I would like it to be
somewhat easy to enter/edit data, but that is not a requirement. The output
is necessary.
It will have categories such as: Personal & Legal Documents; Income Sources;
Investments & Retirement, etc.
Each category has subcategories such as: Living Will (Under category:
Personal & Legal Documents); 401(k) Account (under category: Investments &
Retirement), etc.
Each subcategory has many fields and can have more than 1 record (e.g. I can
have more than one 401(k) plan, etc.)
Now, I'm still working on the normalization for this, but I'm murdering my
brain cells on subclassing the subcategories. It seemed simple enough, I've
read as much as I can find on sub classing and have gone to The Access Web
and have downloaded the onetoone database example, it made sense, but It
doesn't quite fit the bill for me.
This is what I'd like to see:
Report for P.C.
-----------------
Investments & Retirement
401(k) Account
Broker Name: blah
Account #: 123455
401(k) Account
Broker Name: more blah
Account #: 098432
IRA Account
Type: Roth
Account #: 980498
Personal & Legal Documents
Living Will
etc.
-----------------
Can anyone help me? Thank you so much in advance. I've learned a few things
just simply browsing through these access newsgroups.
My tables so far...And this link to show a relationship diagram:
http://www.myfsi.net/erdiagram.jpg
tblContacts
ContactID (primary)
tblReports
ReportID (primary)
ContactID (foreign)
tblReportDetails
ReportID (foreign)
SubcategoryID (foreign) - I've included this per the OneToOne database
example, this is to subclass my categories and be able to choose the correct
subform.
tblSubCategories
SubCategoryID (primary)
CategoryID (foreign)
tblCategories
CategoryID (primary)
tblSubCategory1 (not real name - substitute "tbl401kplans" for example)
ReportID (primary)
SubCategoryID (foreign) - I've included this because one subcategory can
exist in more than one category - Is this too much, should I create seperate
subcategory tables even though they may be alike, It's fine with me as there
would be roughly 50 subcategories?
tblSubCategory2
.... etc. (up to 50 of these?)
I am trying to develop a "Record Keeping" database. The purpose of this
database is merely to print one report that lists all of my important and
pertinent information upon my disability/death. I would like it to be
somewhat easy to enter/edit data, but that is not a requirement. The output
is necessary.
It will have categories such as: Personal & Legal Documents; Income Sources;
Investments & Retirement, etc.
Each category has subcategories such as: Living Will (Under category:
Personal & Legal Documents); 401(k) Account (under category: Investments &
Retirement), etc.
Each subcategory has many fields and can have more than 1 record (e.g. I can
have more than one 401(k) plan, etc.)
Now, I'm still working on the normalization for this, but I'm murdering my
brain cells on subclassing the subcategories. It seemed simple enough, I've
read as much as I can find on sub classing and have gone to The Access Web
and have downloaded the onetoone database example, it made sense, but It
doesn't quite fit the bill for me.
This is what I'd like to see:
Report for P.C.
-----------------
Investments & Retirement
401(k) Account
Broker Name: blah
Account #: 123455
401(k) Account
Broker Name: more blah
Account #: 098432
IRA Account
Type: Roth
Account #: 980498
Personal & Legal Documents
Living Will
etc.
-----------------
Can anyone help me? Thank you so much in advance. I've learned a few things
just simply browsing through these access newsgroups.
My tables so far...And this link to show a relationship diagram:
http://www.myfsi.net/erdiagram.jpg
tblContacts
ContactID (primary)
tblReports
ReportID (primary)
ContactID (foreign)
tblReportDetails
ReportID (foreign)
SubcategoryID (foreign) - I've included this per the OneToOne database
example, this is to subclass my categories and be able to choose the correct
subform.
tblSubCategories
SubCategoryID (primary)
CategoryID (foreign)
tblCategories
CategoryID (primary)
tblSubCategory1 (not real name - substitute "tbl401kplans" for example)
ReportID (primary)
SubCategoryID (foreign) - I've included this because one subcategory can
exist in more than one category - Is this too much, should I create seperate
subcategory tables even though they may be alike, It's fine with me as there
would be roughly 50 subcategories?
tblSubCategory2
.... etc. (up to 50 of these?)