Hello - i would appreciate some help with finding empty cells in a row and then doing something when found. My code for testing is:
Thank you for all your help - Jim A
Code:
Sub TEST_Find_EmptyRows_DeleteRow()
Application.ScreenUpdating = False
Dim r as Long
Lastrow = Cells(Rows.Count, "A").End(xlUp).Row
For r = 1 To Lastrow
If Range(Cells(r, 1) & ":" & Cells(r, 26)) Is Empty Then Rows(r).Interior.ColorIndex = 5 '.Delete
Next r
Application.ScreenUpdating = True
End Sub
Thank you for all your help - Jim A