J J.E. McGimpsey Sep 10, 2003 #2 one way: Dim wkSht As Worksheet On Error Resume Next Set wkSht = Worksheets("TargetSheet") On Error GoTo 0 If Not wkSht Is Nothing Then 'worksheet exists Else 'worksheet doesn't exist End If
one way: Dim wkSht As Worksheet On Error Resume Next Set wkSht = Worksheets("TargetSheet") On Error GoTo 0 If Not wkSht Is Nothing Then 'worksheet exists Else 'worksheet doesn't exist End If