Te dejo el código de Eliminar fila sin tomar en cuenta la fila 1 y 2
Sub BorrarFilas()
Dim i As Integer, nfilas As Integer, qCrit As String
Sheets("FACT").Select
nfilas = ActiveSheet.Cells(1, 1).CurrentRegion.Rows.Count
qCol = InputBox("Columna del criterio")
qCrit = Application.InputBox(prompt:="Criterio" & CDbl(0))
For i = nfilas To 2 Step -1
Cells(i, qCol).Select
If Cells(i, qCol) = qCrit Then
ActiveCell.EntireRow.Select
Selection.Delete
End If
Next i
End Sub
1 respuesta
Respuesta de Elsa Matilde
1