hockeyfan21
Registered User.
- Local time
- Today, 02:23
- Joined
- Aug 31, 2011
- Messages
- 38
Hi,
I am creating a survey database and cannot get the combo box for answers to tie into the questionid #.
I have 41 questions -
t_questions:
questionid
question
t_responseList
questionid
responsetext
t_responses
userid
questionid
responseid
I am trying to build a continuous form that will show all 41 questions, then, next to each question a combo box with the possible answers, which are different on almost all questions.
I have all the questions showing up in my form but all of my combo boxes are showing the answers for question 1.
Combo box rowsource:
ELECT t_responselist.responsetext, t_responselist.questionid FROM t_responselist WHERE (((t_responselist.questionid)=[Forms]![Form1]![questionid]));
[questionid] is a text box from the forms recordsource:
SELECT DISTINCTROW t_questions.questionid, t_questions.question FROM t_questions;
I've attached a screenshot of the form.
Thanks so much for any help,
Toni
I am creating a survey database and cannot get the combo box for answers to tie into the questionid #.
I have 41 questions -
t_questions:
questionid
question
t_responseList
questionid
responsetext
t_responses
userid
questionid
responseid
I am trying to build a continuous form that will show all 41 questions, then, next to each question a combo box with the possible answers, which are different on almost all questions.
I have all the questions showing up in my form but all of my combo boxes are showing the answers for question 1.
Combo box rowsource:
ELECT t_responselist.responsetext, t_responselist.questionid FROM t_responselist WHERE (((t_responselist.questionid)=[Forms]![Form1]![questionid]));
[questionid] is a text box from the forms recordsource:
SELECT DISTINCTROW t_questions.questionid, t_questions.question FROM t_questions;
I've attached a screenshot of the form.
Thanks so much for any help,
Toni