Access 2002 Option Buttons

M

martins19

Hello, I am creating a database with option buttons. IE.. Yes, No, N/A. I am
not sure how to set it up on my form so that you can only select on of the
buttons and the data will be recorded in the table.

Help, Help, Help
 
L

Larry Daugherty

You create an option group on your form bound to a field in your
table. Place your three choices in optChoose. By placing them in the
option group they become mutually exclusive with each other but not
with other option buttons on the form. In the properties you can set
a value for each button, usually start at one. The value of the
selected button will be optChoose's value. When the form's data is
saved to the record, the value of the selected option button will be
saved in field Choose.

HTH
 
Top