Te anexo el código para tu botón:
Private Sub CommandButton1_Click()
'Por.Dante Amor
If TextBox1 = "" Then
MsgBox "Debes llenar el número "
Exit Sub
End If
'
If OptionButton1 = False And OptionButton2 = False And OptionButton3 = False Then
MsgBox "Debes seleccionar una opción"
Exit Sub
End If
'
Set h = Sheets("Hoja4")
If IsNumeric(TextBox1.Value) Then valor = Val(TextBox1.Value) Else valor = TextBox1.Value
Set b = h.Columns("A").Find(valor, lookat:=xlWhole)
If Not b Is Nothing Then
If OptionButton1 Then
opcion = OptionButton1.Caption
ElseIf OptionButton2 Then
opcion = OptionButton2.Caption
ElseIf OptionButton3 Then
opcion = OptionButton3.Caption
End If
h.Cells(b.Row, "B") = opcion
Else
MsgBox "No existe el número : " & TextBox1.Value
End If
End Sub
Realiza los siguientes ajustes en la macro
"Hoja4" por el nombre de tu hoja donde quieres buscar y guardar la opción
"A" Por la columna donde se tiene que buscar el número
"B" Por la columna donde quieres poner la selección
TextBox1 por el nombre de tu textbox
.
Avísame cualquier duda.
.