hi all. i have a spreadsheet sheet that has possible values in the range H7:N21
I want to delete an entire row if that row does not have a value in the range between H:N
i beleive this is a loop inside a loop but i think i am way over complicating things. here is my loops i have now:
hope someone can assist.
I want to delete an entire row if that row does not have a value in the range between H:N
i beleive this is a loop inside a loop but i think i am way over complicating things. here is my loops i have now:
Code:
For i = 7 To 21
With Range("H" & i)
If .Value = "" Then
For c = 9 To 14
With Range(c & i)
If .Value = "" Then
Next c
Else
Next i
End If
End With
Else
Next i
End With
hope someone can assist.