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;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top