Hi All,
I am putting together a Database to look after questionnaire responses from forms created in Excel which have been emailed back in text files.
The questionnaires can change and therefore the database needs to know which questions are associated with which responses - all come back in text files as IDs or Values.
I have three tables
1. tbl_QUESTIONS
- txt_QUESTION_ID (Unique ID for Question)
- txt_QUESTION (Actual Question)
2. tbl_RESPONSES
- txt_RESPONSE_ID (Unique ID for Response)
- txt_RESPONSE (Actual Response)
- sng_RESPONSE_VALUE (Value given for Response 0-5)
3. tbl_QUESTION_RESPONSE
- txt_QUESTION_ID
- txt_RESPONSE_ID
I have a form on which you can edit questions, and a subform which display the responses for that question (linked in tbl_QUESTION_RESPONSE). I want to put a combobox in the subform so that you can change the responses which are associated with the question. But the responses which you can choose from need to have the same sng_RESPONSE_VALUE as that which is already associated.
I can't find a way to limit the combobox to these records, please help it's driving me mad.
Many thanks,
Phil.
I am putting together a Database to look after questionnaire responses from forms created in Excel which have been emailed back in text files.
The questionnaires can change and therefore the database needs to know which questions are associated with which responses - all come back in text files as IDs or Values.
I have three tables
1. tbl_QUESTIONS
- txt_QUESTION_ID (Unique ID for Question)
- txt_QUESTION (Actual Question)
2. tbl_RESPONSES
- txt_RESPONSE_ID (Unique ID for Response)
- txt_RESPONSE (Actual Response)
- sng_RESPONSE_VALUE (Value given for Response 0-5)
3. tbl_QUESTION_RESPONSE
- txt_QUESTION_ID
- txt_RESPONSE_ID
I have a form on which you can edit questions, and a subform which display the responses for that question (linked in tbl_QUESTION_RESPONSE). I want to put a combobox in the subform so that you can change the responses which are associated with the question. But the responses which you can choose from need to have the same sng_RESPONSE_VALUE as that which is already associated.
I can't find a way to limit the combobox to these records, please help it's driving me mad.
Many thanks,
Phil.