Hi Zyus,
At first glance, your data appears to represent a many-to-many (M:N)
relationship. These types of relationships require a minimum of three tables.
One of the tables is known as a join or linking table, and includes the
foreign key side of two one-to-many (1:M) relationships. In English, your
relationships appear to be:
1:M An age can include many terms and
1:M A term can apply to many ages
If this sounds correct, then you'll need one table of ages, one table of
terms, and a third join table to join the two. If all of this seems rather
confusing, then navigate to this link and read up on database design:
http://home.bendbroadband.com/conradsystems/accessjunkie/resources.html#DatabaseDesign101
Tom
http://www.access.qbuilt.com/html/expert_contributors.html
__________________________________________
:
How to incoporate premium table into my database so it can automate the
calculation of premium based on the age , term & loan amt.
The table will look like this in Excel
Age\Term 1 2 3 4 5
18 0.91 1.72 2.48 3.21 3.91
19 1.10 2.16 3.26 4.41 5.62
20 1.81 3.57 5.45 7.45 9.58
Thanks