Afe
Afe

Reputation: 177

Change status of Check Box in Access

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

Answers (1)

Konstantin Pereiaslov
Konstantin Pereiaslov

Reputation: 1824

You can use an UPDATE query, something like

UPDATE tableName SET checkboxField=1

Upvotes: 1

Related Questions