In a big data set I am trying to find each cell in column J that contains any data so "is not blank", then delete that row that contains data. My code however won't work for it:
Dim rng3 As Range
Do
Set rng3 = Columns("J:J")
If Not rng3 Is Nothing Then
rng.EntireRow.Delete
Else
Exit Do
End If
Loop
I was hoping somebody can help me with this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…