Option Group

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
 
G

Graham Mandeno

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
 
Top