Form field entry

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?
 
R

Rick

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top