Hi all,
I've searched through various posts but can't find an answer to my question.
I have three tables. I have a Student Table, a Quiz Table, and a Test Table.
The Student Table has just student names and IDs. Quiz Table is connected by StudentID and Test Table by StudentID, as well.
I want a query to show me the results of all my students so I have a query design to show:
- FirstName (Student Table)
- LastName (Student Table)
- QuizScore (Quiz Table)
- TestScore (Test Table)
When all the information is filled in, (Mike Smith, 100 (quiz), 100 (test)) then the results will populate in my query. However, if one of them has not taken a quiz or a test, they don't show at all in the query. For example, if I had three students:
- Mike Smith; 100 (quiz); 100 (test)
- Bob Lee; <null> (quiz); 90 (test)
- Jennifer Myers; 95 (quiz); <null> (test)
My query will ONLY show Mike Smith. How do I get my queries to show me everyone, to include anyone that may have a Null value in the field? I've tried criteria:
- >=0 OR IsNull
- >=0 OR Is Null
Any help would be greatly appreciated. Thank you!