absolutered03
Registered User.
- Local time
- Today, 15:40
- Joined
- Nov 11, 2008
- Messages
- 17
Attached is the Relationship Diagram for my database.
Basically, I want to create a form for tblCalls...i used to have the questions as fields in this table. but I learned that it is not normalized that way. so now, as you can see the questions, answers, and values for the answers are stored in different tables.
Well when I designed my form with the question as fields in tblCalls, it was quite easy to make controls that displayed the question and the pull down for the answers.
Now, though, I don't know how to go about it when the questions are on their own table with the answers in a linking table, and the values for the answers in a totally different table.
Basically, lets say
tblQuestions
QuestionID/Question/QuestionTypeID
1/Welcome/Service
2/Professional/Service
tblValues
AnswerValueID/Value
1/YES
2/NO
3/NA
The form I am creating is for a representative to review recorded calls that are taken in our CS dep.
So the form frmCalls is like a questionaire for the reviewer to 'rate' the representatives performance.
frmCalls then would then need to look as follows: (i will keep it simple for this example)
Representative: [pull down to select rep name from tblEmployees]
Reviewer: [pull down to select reviewer name from tblReviewers]
Date: [text box to enter information for tblCalls.Calldate]
Did the Representative Welcome the Caller? [Pull down populating three options from tblValues, (YES,NO,N/A). When an answer is chosen, a record should be created in tblAnswers with the current CallID 'n', for QuestionID '1' (the ID number for this question) and AnswerValueID 'n' (for the selected answer)
I hope this is clear...please let me know if I can explain this better for you.
Thank you SO much for all your help! I am in a bind because I need this working correclty by Monday...ugh. I will never accept a project like this ever again.
Basically, I want to create a form for tblCalls...i used to have the questions as fields in this table. but I learned that it is not normalized that way. so now, as you can see the questions, answers, and values for the answers are stored in different tables.
Well when I designed my form with the question as fields in tblCalls, it was quite easy to make controls that displayed the question and the pull down for the answers.
Now, though, I don't know how to go about it when the questions are on their own table with the answers in a linking table, and the values for the answers in a totally different table.
Basically, lets say
tblQuestions
QuestionID/Question/QuestionTypeID
1/Welcome/Service
2/Professional/Service
tblValues
AnswerValueID/Value
1/YES
2/NO
3/NA
The form I am creating is for a representative to review recorded calls that are taken in our CS dep.
So the form frmCalls is like a questionaire for the reviewer to 'rate' the representatives performance.
frmCalls then would then need to look as follows: (i will keep it simple for this example)
Representative: [pull down to select rep name from tblEmployees]
Reviewer: [pull down to select reviewer name from tblReviewers]
Date: [text box to enter information for tblCalls.Calldate]
Did the Representative Welcome the Caller? [Pull down populating three options from tblValues, (YES,NO,N/A). When an answer is chosen, a record should be created in tblAnswers with the current CallID 'n', for QuestionID '1' (the ID number for this question) and AnswerValueID 'n' (for the selected answer)
I hope this is clear...please let me know if I can explain this better for you.
Thank you SO much for all your help! I am in a bind because I need this working correclty by Monday...ugh. I will never accept a project like this ever again.