Hi,
I need one report run under several conditions. It will show student test results but I will need it to print for a particular class (ClassIDKey) and a particular test (TestIDKey) when called from one form, or all classes when called from another form.
I have added a where clause to the "on click" event of the command button that calls it - I want it to print for a particular class and test that are currently open on another form (FRMStudentTestMarks):
"TestIDKey=" & [Forms]![FRMSTudentTestMarks].[TestIDKey] & " AND ClassIDKey=" & [Forms]![FRMSTudentTestMarks].[ClassIDKey]
I can't get it to work! Should I be using the "Filter" option instead?
Thank you