MeldrethMan
Technical User
I'm using an option group to set the value of a text field on a form.
Select Case Me.ogHomeType
Case 1
Me.HomeType = "IL"
Case 2
Me.HomeType = "F1"
Case 3
Me.HomeType = "SH"
Case 4
Me.HomeType = "RH"
End Select
When reopening the form all the option radio buttons are blank, which is confusing for users. If HomeType has value SH for example, I'd like radio button 3 to show up as selected.