+ Reply to Thread
Results 1 to 9 of 9

Check if sheet exists problem

  1. #1
    Forum Contributor
    Join Date
    09-02-2005
    Posts
    146

    Check if sheet exists problem

    If a sheet exists I want to delete it. Why doesn't this work, and is there a better way to do it?

    I mean for now I can work around it with error trapping, but in my experience error trapping is a bad way of coding.

    If Not Sheets("Master Equipment List") Is Nothing Then
    Application.DisplayAlerts = False
    Sheets("Master Equipment List").Delete
    Application.DisplayAlerts = True
    Else
    End If
    Oh if it helps, I get a "subscript out of range" error on the "If Not...Then" line.

  2. #2
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641
    Hi there,

    Looking at your code, two possibilities suggest themselves:

    1. Are you absolutely sure that the name on the worksheet tab corresponds to the string value that you've entered in your code? To avoid the possibility of spelling and/or case differences run the following code:

    Please Login or Register  to view this content.
    If you don't get a "Found" message then check the name on the tab.


    2. Are you sure that the workbook from which you want to delete the worksheet is the active workbook when the code is executed?

    If any other workbook might be active, then use "Thisworkbook.Sheets("Master Equipment List")" to fully specify the required worksheet.

    Hope this helps - please let me know how you get on.

    Best regards,

    Greg M

  3. #3
    Forum Contributor
    Join Date
    09-02-2005
    Posts
    146
    Naw, the name is correct because when the sheet is present it works fine. So far I've done a work around with this....

    on error goto nosheet
    If Not Sheets("Master Equipment List") Is Nothing Then
    Application.DisplayAlerts = False
    Sheets("Master Equipment List").Delete
    Application.DisplayAlerts = True
    Else
    End If
    nosheet:
    But it seems to defeat the point of having an if/then statement.

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Wilro85,

    Sometimes you have to trap an error in the code. In this case, the error occurs because the Sheets collection object raises the error internally whenever an index or key value isn't found. Here is another workaround that avoids the error.
    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

  5. #5
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    Place this code in a Standard Module

    Please Login or Register  to view this content.
    Use it like this:

    Please Login or Register  to view this content.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  6. #6
    Registered User
    Join Date
    09-22-2003
    Posts
    9
    Hi,
    you can simply try to delete this sheet with On Error Resume Next - if the sheet not exists, the rest of code continues.
    Another issue - the workbook has to be NOT PROTECTED.

    Jarek

    Please Login or Register  to view this content.

  7. #7
    Forum Expert Greg M's Avatar
    Join Date
    08-16-2007
    Location
    Dublin. Ireland
    MS-Off Ver
    Office 2016
    Posts
    4,641
    Oops - sorry! I hadn't realised that the code worked when the worksheet existed.

    Greg M

  8. #8
    Forum Contributor
    Join Date
    09-02-2005
    Posts
    146
    Ok, this is just a bit of a noob followup question, but when you say...

    "on error goto 0"

    where does the "0" tell it to go?

  9. #9
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Wilro85,

    The statement "On Error GoTo 0" returns control of the error handling back to the system. The statement "On Error Resume Next" allows you trap and examine an error you might expect to encounter when accessing an object, or might be raised from user actions. Wasn't the point of your post to avoid error handling???

    Sincerely,
    Leith Ross

+ 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