Microsoft Access
--
Questions
--
Followers
Top Experts
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Table: categories
CatID
Category
Table: questions
QuestionID
CatID
Question
Then, for example, to select questions using the lookup:
SELECT mytable.*, categories.category, questions.question FROM mytable, categories, questions WHERE mytable.catID = categories.catID AND categories.catID = questions.catID
Your non-lookup table will contain CATID, which you can use to lookup the list of questions by joining to the 2 lookup tables as in my example (or just join to the question table if you don't want the category name).
Were you looking for an update query?






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
I want to add another field for questions, but i want to populate it pulling questions from the question table where category matches the selection from the category dropdown.
I have the category and question table setup like you have above. Â
When i select lookup &Â relationship i can select a table or query to populate, so i am guessing i need to create a query first then select it.
And if each student can have multiple questions, you would create another lookup table.. "StudentQuestions" which has only 2 fields, studentID and questionID.

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Run query and display all questions for the category to the user.
User selects a question.
The selected QuestionID is stored in the student table.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
so i enter student name, select a category, then the next field would let me select a question linked the categories just selected.
Microsoft Access
--
Questions
--
Followers
Top Experts
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.