linking two fields in seperate box's

K

ksawb

I have a bunch of tables each one a question. In each table two fields.
Field 1 is the answer field 2 is the points for that answer. How can I set it
up that the points show in a text box next to the combo box. I'm teaching
myself so I don't know a lot of the terminology for this program.
 
K

KARL DEWEY

I have a bunch of tables each one a question.
You should not have a separate table per question. Use a separate record
for each question.
Use this in select statement --
SELECT QuestID, [Answer] & " - " & [Points], ....
 
K

ksawb

Thanks but where would I put the formula. Should I make a Query for this?


KARL DEWEY said:
You should not have a separate table per question. Use a separate record
for each question.
Use this in select statement --
SELECT QuestID, [Answer] & " - " & [Points], ....

--
KARL DEWEY
Build a little - Test a little


ksawb said:
I have a bunch of tables each one a question. In each table two fields.
Field 1 is the answer field 2 is the points for that answer. How can I set it
up that the points show in a text box next to the combo box. I'm teaching
myself so I don't know a lot of the terminology for this program.
 
K

KARL DEWEY

Yes you need a query. I suggest that you follow the advice given by Jeff
Boyce.
--
KARL DEWEY
Build a little - Test a little


ksawb said:
Thanks but where would I put the formula. Should I make a Query for this?


KARL DEWEY said:
I have a bunch of tables each one a question.
You should not have a separate table per question. Use a separate record
for each question.
How can I set it up that the points show in a text box next to the combo box.
Use this in select statement --
SELECT QuestID, [Answer] & " - " & [Points], ....

--
KARL DEWEY
Build a little - Test a little


ksawb said:
I have a bunch of tables each one a question. In each table two fields.
Field 1 is the answer field 2 is the points for that answer. How can I set it
up that the points show in a text box next to the combo box. I'm teaching
myself so I don't know a lot of the terminology for this program.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top