Try adding
On Error Resume Next
Just before the
Sheets("False").Delete
Line.
If that doesn't work, here is the If/Then code
On Error Resume Next
If Worksheets("False").Name <> "" Then
Sheets("False").Delete
Else
End If
End Sub