I have a Yes/No field called "Disciplinary Action" in a table. I would like to create a button that changes all of the entries for every record to a "No" when the button is pushed. Right now, some are no and some are yes.
I have a Yes/No field called "Disciplinary Action" in a table. I would like to create a button that changes all of the entries for every record to a "No" when the button is pushed. Right now, some are no and some are yes.
I use only VBA:
CurrentDb.Execute "UPDATE tablename SET [Disciplinary Action] = False"
A macro can cause an action query object to run.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.