I am not sure how to go about this. Any help would be greatly appreciated. Here is what I am trying to do:
I have a table with records. I want to associate each record with multiple associations.
For Example:
record 1 A-12316 belongs to KI2001, KI4000 and KI9200.
record 2 A-06542 belongs to KI2001 and KI4000.
record 3 A-11523 belongs to KI4000
(I have a total of 33 possible associations)
Now I have a form "FrmOptions " with a command button. I want to be able to Click on the Command Button and perform the following:
OpenForm "FrmParts" (that is linked to a table "TblParts" with all the part records like A-12316),
Next, Filter the form by Association. In otherwords, Filter the "FrmParts" Form by only showing the records that have KI2001 associated to them.
Close the Form "FrmOptions ".
In this example, only the A-12316 and A-06542 would be returned on the form. Also want this form to be read only.
I was thinking of adding 33 fields to each record as part of the record to the Parts Table "TblParts" and populating the fields with the [PRODUCT].
Field titles
PRODUCT 1
PRODUCT 2
Thru
PRODUCT 33
Or would that be to cumbersome? Any Ideas?
I have a table with records. I want to associate each record with multiple associations.
For Example:
record 1 A-12316 belongs to KI2001, KI4000 and KI9200.
record 2 A-06542 belongs to KI2001 and KI4000.
record 3 A-11523 belongs to KI4000
(I have a total of 33 possible associations)
Now I have a form "FrmOptions " with a command button. I want to be able to Click on the Command Button and perform the following:
OpenForm "FrmParts" (that is linked to a table "TblParts" with all the part records like A-12316),
Next, Filter the form by Association. In otherwords, Filter the "FrmParts" Form by only showing the records that have KI2001 associated to them.
Close the Form "FrmOptions ".
In this example, only the A-12316 and A-06542 would be returned on the form. Also want this form to be read only.
I was thinking of adding 33 fields to each record as part of the record to the Parts Table "TblParts" and populating the fields with the [PRODUCT].
Field titles
PRODUCT 1
PRODUCT 2
Thru
PRODUCT 33
Or would that be to cumbersome? Any Ideas?
Comment