check if a worksheet exist - VBA

  • Thread starter Thread starter Warren
  • Start date Start date
W

Warren

Please help.

In VBA, how do I check if a worksheet exists?

Thanks

Warren
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top