Option Group

  • Thread starter Thread starter Aurora
  • Start date Start date
A

Aurora

I am using Access 2000.

In form view I have an option group for "Yes" or "No"
answer. Can I add a hyperlink on the Yes option to take
the user to another form immediately?

Aurora
 
Hi Aurora

Use the AfterUpdate event of the option group. Assuming the OptionValue for
the "Yes" button is -1 (True):

If Me.OptionGroupName = -1 Then
DoCmd.OpenForm ...
End If
 
Back
Top