+ Reply to Thread
Results 1 to 3 of 3

Worksheet exists

  1. #1
    Kaval
    Guest

    Worksheet exists

    Is there an easy way to find out if a sheet with a particular name already
    exists in a workbook?

    Thanks, Kaval

  2. #2
    JE McGimpsey
    Guest

    Re: Worksheet exists

    One way:

    Const sNAME As String = "ParticularName"
    Dim ws As Worksheet
    On Error Resume Next
    Set ws = Worksheets(sNAME)
    On Error GoTo 0
    If Not ws Is Nothing Then
    MsgBox "Worksheet " & sNAME & " exists"
    Else
    MsgBox "Worksheet " & sNAME & " doesn't exist"
    End If

    In article <03312BAA-6265-4E08-A721-2AA79D8B43F9@microsoft.com>,
    "Kaval" <Kaval@discussions.microsoft.com> wrote:

    > Is there an easy way to find out if a sheet with a particular name already
    > exists in a workbook?
    >
    > Thanks, Kaval


  3. #3
    Stuart
    Guest

    Re: Worksheet exists

    On Error Resume Next
    Sheets("MySheet").Select
    If Err Then
    MsgBox "MySheet does not exist"
    End If
    On Error GoTo 0


    "Kaval" <Kaval@discussions.microsoft.com> wrote in message
    news:03312BAA-6265-4E08-A721-2AA79D8B43F9@microsoft.com...
    > Is there an easy way to find out if a sheet with a particular name already
    > exists in a workbook?
    >
    > Thanks, Kaval




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1