fastest way would be to make a report using the access report wizard, then go into the report properties and edit the record source.
Edit the query the report is based on to - Example Only! not tested, your fields may be different.
SELECT [student_list].*
FROM [student_list]
WHERE ((([student_list].[expr2])="pass"));
or
SELECT [student_list].*
FROM [student_list]
WHERE ((([student_list].[expr2])<>"fail"));
Hi there. I tried the sql statement you posted but it returned the names of the student with a FAIL remark.![]()
I tried this statement but this returned the names with the "FAIL" remark.
Also, when i open the query it says that there is a circular reference.fastest way would be to make a report using the access report wizard, then go into the report properties and edit the record source.
Edit the query the report is based on to - Example Only! not tested, your fields may be different.
SELECT [student_list].*
FROM [student_list]
WHERE ((([student_list].[expr2])="pass"));
or
SELECT [student_list].*
FROM [student_list]
WHERE ((([student_list].[expr2])<>"fail"));