LR = ws.Cells(ws.Rows.Count, 1).End(xlUp).Row
i = 1
Do While i <= LR
If Cells(i, 13).Value = "FALSE" Then
ws.Rows(i).EntireRow.Interior.Color = RGB(255, 0, 0)
End If
i = i + 1
Loop
ws.Columns(13).Delete
MsgBox "S&R finished", vbInformation + vbOKOnly, "S&R finished"