Code:
Dim RowStart As Range
Dim RowFinish As Range
Worksheets("sheet1").Activate
Set RowStart = Cells("A11")
Set RowFinish = Cells("A500")
RowStart.Select
Do While ActiveCell < Cells(RowFinish)
If ActiveCell = "" Then
Rows(ActiveCell).Select
Selection.Delete Shift:=xlUp
ActiveCell.Move
End If
Loop
I'm trying to write a macro that will check a column for null values and then delete all rows that qualify. This is as far as i've gotten but I'm pretty new to excel code and I think I'm missing a bunch of pieces. Can anyone help me out?