How do I check a whole column of checkboxes in a table?

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

Guest

In an access table, if I have created a column of checkboxes, and now need to
check them all. How do I do that. There are about 8000 boxes in the table and
I don't want to check one by one.
 
1) Create a new query.
2) Go to SQL view.
3) Put the (similar) code:
UPDATE myTable SET myTable.myCheckBox = TRUE
4) Run the query.

HTH

Vlado
 
Back
Top