clearing a column of checkboxes

K

k. Georgiadis

In an Access table, is there a quick way to clear an
entire column of Yes/No checkboxes (i.e., setting the
entire column to the "No" condition)?
 
C

Cheryl Fischer

An update query such as the following will do that:

UPDATE [MyTable] SET [MyTable].MyYesNoField = 0


hth,
 

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

Top