VBA Check a tab name exsist before continueing with Code

gheyman

Well-known Member
Joined
Nov 14, 2005
Messages
2,341
Office Version
  1. 365
Platform
  1. Windows
I need an If statement that checks to see if there is a tab named "WBS_Dictionary" If not end the code.

Thanks!!!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Try
Code:
If Evaluate("isref(WBS_Dictionary!a1)") Then MsgBox "exists"
 
Upvote 0
I cant get this to work in the code I have:

Code:
Sub GetWBSTab()
    Application.ScreenUpdating = False
    
    Dim Consolidate As Workbook
    Dim BOEBook As Workbook
    Set Consolidate = ThisWorkbook

    BOEFile = Application.GetOpenFilename("Excel files (*.xls*), *.xls*")
    
    If BOEFile <> False Then
        Workbooks.Open (BOEFile)
        Set BOEBook = ActiveWorkbook

        
        'Remove Formulas
        
        If Evaluate("isref(WBS_Dictionary!a1)") Then
            MsgBox "The Selected Workbook does not contain a WBS_Dictionary tab"
            Exit Sub
        Else
        
        ActiveWorkbook.Sheets("WBS_Dictionary").Activate
        Cells.Select
        Selection.Copy
            Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
                :=False, Transpose:=False
            Application.CutCopyMode = False
            
        'Remove Data Validation
        With Selection.Validation
            .Delete
            .Add Type:=xlValidateInputOnly, AlertStyle:=xlValidAlertStop, Operator _
            :=xlBetween
            .IgnoreBlank = True
            .InCellDropdown = True
            .ShowInput = True
            .ShowError = True
        End With
        Selection.ClearComments
        
         'Remove Button
         ActiveSheet.Shapes.Range(Array("CommandButton1")).Select
            Selection.Delete
    
        ActiveWorkbook.Sheets("WBS_Dictionary").Copy Consolidate.Sheets(Consolidate.Sheets.Count)
        End If
   
        
        BOEBook.Close False
        
    Else
    Exit Sub
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,560
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top