Se ha producido un error '91' with en tiempo de ejecución no esta establecida
Estoy teniendo problemas al darle click sobre el datos que aparece en mi ListBox para poder seleccionarlo y pasarlo a otro formulario y poder modificar la información. Adjunto código y la línea.
Private Sub ListBox1_Click()
Range("A2").Activate
Cuenta = ListBox1.ListCount
Set Rango = Range("A1").CurrentRegion
For i = 0 To Cuenta - 1
If Me.ListBox1.Selected(i) Then
valor = Me.ListBox1.List(i)
Rango.Find(What:=valor, LookAt:=xlWhole, After:=ActiveCell).Activate <----- Línea donde tira el error
End If
Next i
End Sub
1 respuesta
Respuesta de Elsa Matilde
2