clearing a column of checkboxes

  • Thread starter Thread starter k. Georgiadis
  • Start date Start date
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)?
 
An update query such as the following will do that:

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


hth,
 
Back
Top