A
Angel_G
Hi there!
Can anyone help with the following?
I have a Form that has a combo box (In the form header) that when a part
number in the combo box is selected then the detail in the form displays all
the specs associated with that part number. What I want is to have a field
available for each spec so that I can write the results for each spec. Then,
I can run an append query that will capture all the specs and the data that
I typed in the temp fields and write it to the Results table. Is this
possible?
The query should look like this:
Combo Box = 4X7 Plastic Bag
Air Min 10PSI Max 40PSI Results______
Thickness Min 10MIL Max 30MIL Results______
Different Item
Combo Box = 7" Wire
Diameter Min 40 Max 65 Results______
Pull Strength Min 8Lbs Max 16Lbs Results______
Length Min 6.95" Max7.15" Results_____
Notice that the results change and I want an available field for each of the
specs (That will grow as the specs grow).
Here is my Query in case needed.
SELECT tblRMSpecs.*
FROM tblRMSpecs
WHERE (((tblRMSpecs.PartNo)=[Forms]![Form]![PartNo]));
Thank you so much!
Can anyone help with the following?
I have a Form that has a combo box (In the form header) that when a part
number in the combo box is selected then the detail in the form displays all
the specs associated with that part number. What I want is to have a field
available for each spec so that I can write the results for each spec. Then,
I can run an append query that will capture all the specs and the data that
I typed in the temp fields and write it to the Results table. Is this
possible?
The query should look like this:
Combo Box = 4X7 Plastic Bag
Air Min 10PSI Max 40PSI Results______
Thickness Min 10MIL Max 30MIL Results______
Different Item
Combo Box = 7" Wire
Diameter Min 40 Max 65 Results______
Pull Strength Min 8Lbs Max 16Lbs Results______
Length Min 6.95" Max7.15" Results_____
Notice that the results change and I want an available field for each of the
specs (That will grow as the specs grow).
Here is my Query in case needed.
SELECT tblRMSpecs.*
FROM tblRMSpecs
WHERE (((tblRMSpecs.PartNo)=[Forms]![Form]![PartNo]));
Thank you so much!