Hello,
I have several sets of radio buttons in group options on my split form that were working just fine (filling-in when selected and recording the data to my table) before I added a code to the "After Update" event tab (see code below). Once I put the code in the buttons would not longer fill in to show as selected. They do still record the formatted information on the table (title of button instead of the number). I cannot figure out what how to fix this. Can anyone help?
Code:
Private Sub FRAME_Review_Status_AfterUpdate()
Select Case FRAME_Review_Status.Value
Case 1
FRAME_Review_Status.Value = "Review NA"
Case 2
FRAME_Review_Status.Value = "Pending DLR Conf"
Case 3
FRAME_Review_Status.Value = "Pending Analyst Review"
Case 4
FRAME_Review_Status.Value = "Pending DS Review"
End Select
End Sub