
Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000/2003
The reason I didn't set the table definition on the field to Required is
because they must choose one box or the other, but never both. If I set them
both to required it wouldn't work. So what I need to somehow do is not let
them proceed without checking either "Projection" or "Actual".
> Simplest way, in the Table definition, is to make the field attached to the
> Option Group Required.
>
> More complicated way would be to run some validation code, in the
> Form_BeforeUpdate event, to insure that the Option Group isn't Null.
Al Campagna - 08 May 2008 05:28 GMT
Sandra,
You're misunderstanding the Option Group logic. No matter how many
check boxes there are in an OptionGroup, the group itself only has one
value.
The Required property represents the one value returned by the Option
Group
And if that Option Group is bound to a table field, and that table field
is Required... a new record will not update until one checkbox in the Group
is selected.

Signature
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html
"Find a job that you love... and you'll never work a day in your life."
> The reason I didn't set the table definition on the field to Required is
> because they must choose one box or the other, but never both. If I set
[quoted text clipped - 9 lines]
>> More complicated way would be to run some validation code, in the
>> Form_BeforeUpdate event, to insure that the Option Group isn't Null.