Delete or reset items from an entry form
I have a simple questionnaire for users. How can I clear the entries without closing the form?
Currently I have a close button which saves the information to the table.
Here’s what I got;
rst![question3] = Me![opquestion3].Value
DoCmd.Close acForm, Me.Name
I used this to save and close the form. Instead of closing the form I just want to reset or clear the entries.
I have a simple questionnaire for users. How can I clear the entries without closing the form?
Currently I have a close button which saves the information to the table.
Here’s what I got;
rst![question3] = Me![opquestion3].Value
DoCmd.Close acForm, Me.Name
I used this to save and close the form. Instead of closing the form I just want to reset or clear the entries.