View Single Post
 
Old 11-18-2018, 10:32 AM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 533
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

.
You have indicated you are manually selecting the rows to be deleted. This macro will do that :

Code:
Sub DelRows()
    Selection.EntireRow.Delete
End Sub
If you don't want to manually select the rows, but rather have it done automatically, use this macro :


Code:
Sub DelCRows()
    Columns("C:C").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
Reply With Quote