D
dee
I have been working on a survey database and between AYS, advice here,
research and reading books, it is coming along quite nicely.
tblQuestionnaires
QstnaireID (autonumber PK)
QstnaireName
QstnaireDescription
tblQuestions
QstnID (autonumber PK)
QstnaireID (FK from tblQuestionnaires)
SectionNo
SectionName
SubsectionName
QstnPrefix (these differ depending on the qstnaire)
QstnNo
QuestionText
tblAnswers
QstnID (FK from tlbQuestions)
Answer (Both of these fields comprise the PK)
tblResponses
PptNo (combine with QstnID for PK)
QstnID (FK from tlbQuestions)
Answer
I also have tblParticipants that contains detailed particpant info,
including name, dob, language, etc., etc. and tblInterviewer that contains
the interviewer code.
My question, for which I have seen many different approaches, but still I'm
not clear on is:
How can I construct a form that lets me:
- Use a check box for Y/N
- A combo-box that allows one response only from the list of answers
- A method to allow a respondant to select multiple answers
- A method where the user may select from a list and/or write their own
response
And how does this relate back to my tables to populate them with the correct
responses?
research and reading books, it is coming along quite nicely.
tblQuestionnaires
QstnaireID (autonumber PK)
QstnaireName
QstnaireDescription
tblQuestions
QstnID (autonumber PK)
QstnaireID (FK from tblQuestionnaires)
SectionNo
SectionName
SubsectionName
QstnPrefix (these differ depending on the qstnaire)
QstnNo
QuestionText
tblAnswers
QstnID (FK from tlbQuestions)
Answer (Both of these fields comprise the PK)
tblResponses
PptNo (combine with QstnID for PK)
QstnID (FK from tlbQuestions)
Answer
I also have tblParticipants that contains detailed particpant info,
including name, dob, language, etc., etc. and tblInterviewer that contains
the interviewer code.
My question, for which I have seen many different approaches, but still I'm
not clear on is:
How can I construct a form that lets me:
- Use a check box for Y/N
- A combo-box that allows one response only from the list of answers
- A method to allow a respondant to select multiple answers
- A method where the user may select from a list and/or write their own
response
And how does this relate back to my tables to populate them with the correct
responses?