+ Reply to Thread
Results 1 to 4 of 4

If Worksheet Exists

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-27-2006
    Location
    Cayman Islands
    Posts
    379

    If Worksheet Exists

    Hi guys,

    I have a Workbook that creates a new sheet for each member of staff in a list, however I want it to skip any member of staff for which a sheet already exists (avoiding using an error handler).

    I have the below, but it seems to try and create sheet even if it exists. Any ideas? Thanks!


    Function WorksheetExists(WSName As String) As Boolean
    
    On Error Resume Next
    
    WorksheetsExists = Worksheets(WSName).Name = WSName
    
    On Error GoTo 0
    
    End Function
    
    Sub CreateTimesheets()
        
        Dim SheetName As String
        Dim NumberofStaff As Long
         
        Dim i As Integer
    
    Application.ScreenUpdating = False
    
    Worksheets("Staff").Select
    NumberofStaff = Application.CountA(Range("A:A")) - 3
    
         For i = 1 To NumberofStaff
                
                SheetName = "" & Worksheets("Staff").Cells(i + 3, "A")
                
                If Not WorksheetExists(SheetName) Then
                    Sheets("Timesheet Template").Copy After:=Sheets(Sheets.Count)
                    Sheets(Sheets.Count).Name = SheetName
                    Cells(1, 3) = SheetName
                    Cells(1, 1) = "VALID"
                End If
        
        Next i
    
    End Sub

  2. #2
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: If Worksheet Exists

    Hi Chris,

    Change this line :

    WorksheetsExists = Worksheets(WSName).Name = WSName
    To this (excessive one "s" letter) :

    WorksheetExists = Worksheets(WSName).Name = WSName

    Regards

  3. #3
    Forum Contributor
    Join Date
    04-27-2006
    Location
    Cayman Islands
    Posts
    379

    Re: If Worksheet Exists

    Argh! I'm so dumb! Thanks for your help!

  4. #4
    Forum Guru karedog's Avatar
    Join Date
    10-03-2014
    Location
    Indonesia
    MS-Off Ver
    2003
    Posts
    2,971

    Re: If Worksheet Exists

    You are welcome. It's just a typo, happened all the time


    Regards

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Check if Worksheet exists and Insert Worksheet
    By ddanmcgrew in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-27-2012, 03:19 PM
  2. Determining if a worksheet exists
    By Phil_V in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-11-2009, 06:06 AM
  3. worksheet exists or not
    By skvabbili in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-04-2006, 05:50 PM
  4. [SOLVED] Worksheet exists
    By Kaval in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-27-2006, 04:55 AM
  5. check if worksheet exists
    By Ian in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2005, 05:05 PM
  6. [SOLVED] check if worksheet exists
    By Ian in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 05:05 AM
  7. [SOLVED] check if worksheet exists
    By joeeng in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 12:05 AM
  8. [SOLVED] check if worksheet exists
    By joeeng in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-05-2005, 10:05 PM

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