mcelligott
Programmer
Hello,
I have developed a questionaire for a group of our employees to use for testing a new product we will be purchasing. There are several parts to the product so I have made questions for each part of the product they are evaluating.
The main form allows them to choose the part of the product they want to evaulate. As soon as they choose the part of the product from the drop down list, the questions specific to that part of the product appear in the subform.
The problem that I have run into is that I have a seperate table set up for their responses (since multiple people will be testing each part). When I attempt to add that table into the subform's record source, the questions no longer appear.
When they select the part of the product to evaluate in the main form, I have an after update event running a query to create records for each of the questions in the responses table for them to make responses (using a unique ID).
Any thoughts on how I can get the questions to appear again with the blank spaces for the answers in the responses table?
Here is the record source information from the subform:
I have developed a questionaire for a group of our employees to use for testing a new product we will be purchasing. There are several parts to the product so I have made questions for each part of the product they are evaluating.
The main form allows them to choose the part of the product they want to evaulate. As soon as they choose the part of the product from the drop down list, the questions specific to that part of the product appear in the subform.
The problem that I have run into is that I have a seperate table set up for their responses (since multiple people will be testing each part). When I attempt to add that table into the subform's record source, the questions no longer appear.
When they select the part of the product to evaluate in the main form, I have an after update event running a query to create records for each of the questions in the responses table for them to make responses (using a unique ID).
Any thoughts on how I can get the questions to appear again with the blank spaces for the answers in the responses table?
Here is the record source information from the subform:
Code:
SELECT Tests.[Action Tested], Tests.[Test Date], Tests.[Tested By], Tests.[Actual Result], Tests.Comments, Tests.[Pass or Fail], Actions.ID, Actions.Script, Actions.Action, Actions.Data, Actions.Path, Actions.[Expected Result]
FROM Actions INNER JOIN Tests ON Actions.ID = Tests.[Action Tested];