2. From what I can make out There are two tables involved. Here's a few steps
as an example
The first table Questions contains
QuestionID
Question
AnswerSuggestion
and the second table Results stores
AnswerID
QuestionID
Answer
1. create a form based on results table.
2. Add textbox for answer id,
3. Add a combo for QuestionID, select look up values in a
table... select all fields, and when you come to the
part where you set column widths, drag across the width
of answer so that it's hidden.
4. Add textbox for Answer (call it Answer)
5. Select combo box, and in the properties list, go down to
the bottom where the events are located.
6. select After_update and build code.
enter
Me.Answer = Me.Combo2.Column(2)
simple.
just make sure that you have the proper number of the column in the combo box ( they start at 0,1,2)