nevermind, figured out i need to use the TypeName method....

Code:
For Each Control In Me.Controls
    If TypeName(Control) = "OptionButton" Then
        If Control.Value = True Then
            sName = Control.Caption
        End If
    End If
Next