OK! I work for a Boys home and we are trying to track their daily events.
We have been tracking for about 10 months and someone decided that they
needed more information on the form. So I added weather they attended public
school or not and if they had any school activities. I made both of these
questions yes or no. Now when I go to the form to enter the data in when I
check yes it checks yes for all of the records. I need to be able for some
of the records to be no. Sorry about the confusion.
The point to remember is that the Form *does not store anything*. It's just a
window, a tool to edit data; the data is stored in your Table, and only in
your table. Adding a checkbox on the form (and just the form) will do just as
you describe - its value is not stored anywhere.
You need to add yes/no fields *to the Table* upon which the form is based. You
will then probably need to open the Form in design view; view its Recordsource
property; and be sure that the newly added fields are included in the
recordsource. You can then set the Control Source property of each of these
new checkboxes to the appropriate table field.
John W. Vinson [MVP]