Borrar con command button
No entiendo por que el botón de borrar en algunos casos me muestra error: El tipo no coincide. Solo en algunos casos. El comando es el siguiente:
Fertilizante = InputBox("¿Cual fertilizante desea eliminar?", "FERTILIZANTES")
Dim fila As Integer
fila = 1
If Fertilizante <> "" Then
Do While fila <= 70
If Cells(fila, 3) = Fertilizante Then
Rows(fila).Delete Shift = True
End If
fila = fila + 1
Loop
End If
¿Qué debo modificarle?
Fertilizante = InputBox("¿Cual fertilizante desea eliminar?", "FERTILIZANTES")
Dim fila As Integer
fila = 1
If Fertilizante <> "" Then
Do While fila <= 70
If Cells(fila, 3) = Fertilizante Then
Rows(fila).Delete Shift = True
End If
fila = fila + 1
Loop
End If
¿Qué debo modificarle?
1 respuesta
Respuesta de rafajish
-1