Checkbox on one of my forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a checkbox in one of my forms to distinguish if a student was present
or not. But when I run my form it won't allow me to check my checkbox. It's
enabled and my form is set to allow edits.

Any ideas??

Thank you,
ivalum21
 
Not locked.

Here is the SQL for the record source of my form:

SELECT Enrollments.SessionID, Enrollments.StudentID, Students.FirstName,
Students.MiddleName, Students.LastName, Attendance.Date, Attendance.Present
FROM (Students INNER JOIN Attendance ON Students.StudentID =
Attendance.StudentID) INNER JOIN Enrollments ON Students.StudentID =
Enrollments.StudentID;
 
Back
Top