Reputation: 177
How can I change with only one click the status of the checkbox in the whole Access table? (There are about 30000 rows that's why I need to perform an automatic change)
Upvotes: 0
Views: 35
Reputation: 1824
You can use an UPDATE
query, something like
UPDATE tableName SET checkboxField=1
Upvotes: 1