Error al limpiar un combobox
Tengo el siguiente código
Private Sub ComboBox1_change()
Rem capturamos los daos de la hoja
Cells(ComboBox1.ListIndex + 1, 1).Select ( me da error )
TextBox2 = ActiveCell.Offset(0, 1)
TextBox3 = ActiveCell.Offset(0, 2)
TextBox4 = ActiveCell.Offset(0, 3)
TextBox5 = ActiveCell.Offset(0, 4)
TextBox7 = ActiveCell.Offset(0, 5)
TextBox6 = ActiveCell.Offset(0, 6)
End Sub
Private Sub CommandButton1_Click()
Rem grabar datos modificados
Cells(ComboBox1.ListIndex + 1, 1).Select
ActiveCell.Offset(0, 4) = (TextBox5)
ActiveCell.Offset(0, 5) = (TextBox7)
ActiveCell.Offset(0, 6) = (TextBox6)
Rem ComboBox1.Clear
TextBox2 = ""
TextBox3 = ""
TextBox4 = ""
TextBox5 = ""
TextBox6 = ""
ComboBox1.SetFocus
End Sub
Private Sub TextBox3_Change()
TextBox3.Text = Format$(TextBox3.Text, "##,##0.00")
End Sub
Private Sub TextBox5_Change()
If TextBox5 = 0 Then
TextBox7 = Val(24)
End If
End Sub
El problema es que al intentar actualizar otro dat me da erro en la linea
Cells(ComboBox1.ListIndex + 1, 1).Select ( me da error )
No entiendo la razón, si alguien pudiera ayudarme