Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how to check whether certain sheets exist or not in an Excel document using Excel VBA?

share|improve this question

2 Answers

up vote 6 down vote accepted

Although (unfortunately) such method is not available, we can create our own function to check this..

Hope the code below fits your needs.

Edit1: Added also delete statement...

Sub test()

    If CheckSheet(Sheets(3).Name) then

        Application.DisplayAlerts = False
        Sheets(Sheets(3).Name).Delete
        Application.DisplayAlerts = True

    End If

End Sub

The solution I'd go for...

Function CheckSheet(ByVal sSheetName As String) As Boolean

    Dim oSheet As Excel.Worksheet
    Dim bReturn As Boolean

    For Each oSheet In ActiveWorkbook.Sheets

        If oSheet.Name = sSheetName Then

            bReturn = True
            Exit For

        End If

    Next oSheet

    CheckSheet = bReturn

End Function

Alternatively, if you don't mind to use code that actively raise errors (which is not recommended by common coding best practices) you could use this 'Spartan Programming wannabe' code below...

Function CheckSheet(ByVal sSheetName As String) As Boolean

    Dim oSheet As Excel.Worksheet
    Dim bReturn As Boolean

    For Each oSheet In ActiveWorkbook.Sheets

        If oSheet.Name = sSheetName Then

            bReturn = True
            Exit For

        End If

    Next oSheet

    CheckSheet = bReturn

End Function


Function CheckSheet(ByVal sSheetName As String) As Boolean

    On Error Resume Next
    Dim oSheet As Excel.Worksheet

    Set oSheet = ActiveWorkbook.Sheets(sSheetName)
    CheckSheet = IIf(oSheet Is Nothing, False, True)

End Function
share|improve this answer
This is also an excellent solution -- checks without relying on errors. I knew there was a better way, and I had used this way before at work, I just couldn't remember how to do it. @Tiago: How would you use it on Sheets(1)? Just pass in Sheets(1).Name? – Paul McLain Jul 27 '11 at 2:32
@PaulR, yeap, exactly... Sheets(1).name would do the trick. Notice you may need to actively define the workbooks you're going to use, since a 'sheet' reference implicitly points to the active workbook (which is not the expected, sometimes). – Tiago Cardoso Jul 27 '11 at 2:43
Right, I've had that bite me at work sometimes. For larger operations, I tend to use a With block for my Worksheets("SheetName") object, and call it good. This would be, of course, after I made sure Worksheets("SheetName") existed. – Paul McLain Jul 27 '11 at 2:47
Hi @Tiago Cardoso thanks for answering. But sorry if i've asking amateur questions here. I'm rather new to excel-vba, but with my context I've checking if these sheets(2) and (3) exist i've wanted to initial a delete function but now with your above codes. How should implement it this function? – Vivian Jul 27 '11 at 3:01
Hi @PaulR i have updated my code above as i have encounter some problem while implementing Tiago Cardoso code. Can you take a look and give me some suggestions here as to how to solve it. Thanks – Vivian Jul 27 '11 at 4:04
show 6 more comments

Something like this will get you started:

On Error Resume Next

Dim wSheet as Worksheet
Set wSheet = Sheets(1) ' can also be a string, such as Sheets("Sheet1")

If wSheet Is Nothing Then
    MsgBox "Worksheet not found!"
    Set wSheet = Nothing ' make the worksheet point to nothing. 
    On Error GoTo 0 
Else 
    MsgBox "Worksheet found!"
    Set wSheet = Nothing ' set the found Worksheet object to nothing.  You can use the found wSheet for your purposes, though.  
End If

This code was based on http://www.ozgrid.com/VBA/IsWorkbookOpen.htm. Look for the DoesSheetExist() sub.

Hope this helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.