John, I see now why you get paid the BIG BUCKS!!!
Don't I wish... said:
Looking at your answer and the Survey Database, I have reformatted the
tables to look like this:
tblProblems
ProblemID ProblemName
PRL PRL228
NSG No Signal
AUT Authentication
tblQuestions
ProblemID QuestionNo QuestionName
PRL PRL01 Is there coverage?
NSG NSG01 Is there power to device?
AUT AUT01 Is the right feature added to account?
Just note that you might have many rows all with ProblemID "NSG" - all
the different questions that might be asked to deal with a no-signal
condition. Note also that it's probably not necessary to include the
text string "NSG" in the QuestionNo field; you can instead just use an
Integer number field, and values 1, 2, 3 and so on. If you wish to see
the problem and question number together on screen, you can just
concatenate them:
[ProblemID] & Format([QuestionNo], "00")
tblSuggestions
ProblemID SuggestionID SuggestionName?
PRL PRLS01 Make sure device is updated.
NSG NSGS02 Reprogram device.
AUT AUTS03 Call telesales.
Well... this makes sense if Suggestions and Questions are completely
independent. If a Suggestion applies to a particular Question, then
you should link to tblQuestions, probably by the two fields ProblemID
and QuestionNo.
This would let you deal with the question "Is there power to device?"
by providing an answer "Maybe it would work better if you plugged it
in" - which might not be an appropriate suggestion in other contexts.
Please tell me I interpreted this correctly, because I feel good about this,
and it definately makes more sense with my data. Even though I'm not
entering any new "per call" information, it allows me to add or remove any
new suggestions or questions. This is just first tier, so the tshooting is
not extensive. Am I ready to begin with the form now??? <g> (Thank you so
You're getting a lot closer.
John W. Vinson[MVP]