Form field entry

  • Thread starter Thread starter karenp
  • Start date Start date
K

karenp

I have a form and upon data actually being entered into a
field I would like for the entry to trigger a selection
of one of the radio buttons in an option group I have set.

How can I make this happen?
 
In the 'on exit option of the field (or maybe use on change) you could put a
statement similar to:

If [SomeField] = "some value" then
Me![SomeOptionGroup] = 1
End if

This would cause the radio button to be checked that had an option value of
'1'.

Hope this helps.

Rick
 
Back
Top