I would like to delete a row after the vba code identified the the matching cell. The code is as follows:
For r = 1 To 6500
If Len(Cells(r, 8)) = "FAIL" Then
Exit For ' gets out of the loop
End If
If Len(Cells(r, 8)) = 4 Then
***I need something here to
delete the row found and then
moves the data row below it
up to it's place. ***
End If
Next r
Thanks for your help!
For r = 1 To 6500
If Len(Cells(r, 8)) = "FAIL" Then
Exit For ' gets out of the loop
End If
If Len(Cells(r, 8)) = 4 Then
***I need something here to
delete the row found and then
moves the data row below it
up to it's place. ***
End If
Next r
Thanks for your help!