M
Mary
Here is my problem. I have three tables that need to be related.
Table 1 - Project Type
idx_Ptype = Primary Key (autonumber)
Ptype (text)
Active (yes/no)
Table 2 - Activities
idx_ActType = Primary Key (autonumber)
ActType (text)
TestGroups (number) cross referenced with table Testgroups
Active (yes/no)
Table 3 - Projects
ID = Primary Key (autonumber)
ProjDesc (text)
Active (yes/no)
Complete (yes/no)
Each Project will have only one Project Type but will have many activities
associated with it. Each Project Type will have many projects and many
activities associated. Each Activitiy will have many projects and project
types associated with it. How do I get these to relate.
Then how do I get it to work on a form where if I select a project from a
combo box how can I get my second combo box of activities to show only the
activities that go with that project with out having to select the project
type as well.
Table 1 - Project Type
idx_Ptype = Primary Key (autonumber)
Ptype (text)
Active (yes/no)
Table 2 - Activities
idx_ActType = Primary Key (autonumber)
ActType (text)
TestGroups (number) cross referenced with table Testgroups
Active (yes/no)
Table 3 - Projects
ID = Primary Key (autonumber)
ProjDesc (text)
Active (yes/no)
Complete (yes/no)
Each Project will have only one Project Type but will have many activities
associated with it. Each Project Type will have many projects and many
activities associated. Each Activitiy will have many projects and project
types associated with it. How do I get these to relate.
Then how do I get it to work on a form where if I select a project from a
combo box how can I get my second combo box of activities to show only the
activities that go with that project with out having to select the project
type as well.