Clear one field in multiple records.

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

Guest

In the form I have I would like to add a button that clears a specific field
in all the records of a table. How can do I create this? Thanks... Joe..
 
Create an update query that will clear the field.
Use the Click event of the button and use:
CurrentDb.Execute("qupdClearField"), dbFailOnError
Substitiue the name of your query where I have qupdClearField
 
Back
Top