setting a value to a field for all records

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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?
 
Use an update query.
Update to 0 (zero) for No or False and -1 (minus one) for Yes or True.
 
Back
Top