View Full Version : Yes/No Query


joik
08-17-2002, 03:06 PM
I am pretty new to Access but am feeling pretty confident at what I have accomplished so far. I've run in to a snag, however. I have two check boxes on a form and I want to build a string so that when the Exempt check box is selected it automatically checks the Paid box. HELP!

Jon K
08-17-2002, 06:38 PM
Put this line in the OnClick Event of the Exempt check box:-

If Me.Exempt Then Me.Paid = True

joik
08-18-2002, 07:22 AM
It worked wonderfully! Thank you!

Pat Hartman
08-20-2002, 08:23 PM
When you have mutually exclusive values, they should be stored in a single field and represented on a form with an option group if there are onaly a few choices and those choices are unlikely to change or by a combobox if there are many choices or choices are likely to be added.