
Sub pulisci_excel()
ultimariga = Range("c65356").End(xlUp).Row
For i = 1 To ultimariga
If Range("e" & i) = "" Then
Range("e" & i).Select
Selection.EntireRow.Delete
End If
Next i |
Sub pulisci_excel()
ultimariga = Range("C" & Rows.Count).End(xlUp).Row
For i = ultimariga To 1 Step -1
If Range("e" & i) = "" Then
Range("e" & i).Select
Selection.EntireRow.Delete
End If
Next i
End Sub |
