setting a value to a field for all records

P

Paterson

I need to create 'Select All' and 'Unselect All' buttons to put true or false
in a yes/no field. Anyone have an idea for the easiest way to iterate
through all the records?
 
K

KARL DEWEY

Use an update query.
Update to 0 (zero) for No or False and -1 (minus one) for Yes or True.
 
Top