Recent content by uwm3

  1. U

    How to clear an option group once checked?

    Thank you Gemma-the-husky I figured out that I can, as you said, put a command button in, and then put VBA code in so that "on click," the option group value = 0. The code looks like this: Private Sub CommandButton_Click() Me.[GroupName] = 0 End Sub This is a form used for people to...
  2. U

    How to clear an option group once checked?

    Could you elaborate on that? When you say "click a button," which button do I click? At what point do I type in "myoptiongroup = 0?" Do I put that in the VBA code for an event or... I'm not sure how to use the information you gave me.
  3. U

    How to clear an option group once checked?

    This is the original poster again. I've noticed that on the form, I can right click on whichever checkbox in the option group is checked, and select "Does Not equal [value]" and that unchecks the box on the form. But whichever option was checked when I hit save, the data table records that value...
  4. U

    How to clear an option group once checked?

    Hi, In creating a form with checkboxes created using the "option group" control type, I am trying to find a way to clear all the checkbox options in an option group after having checked an option. For instance, if the user checks one of the options but then decides they actually want to skip...
Back
Top Bottom