if then executes every time

jrowe

New Member
Joined
Jul 17, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I have an If Then statement the executes every time, true or false doesn't matter.

VBA Code:
Option Explicit

Sub AddMonthWkst()
    Dim ws As Worksheet
    Dim wsM As Worksheet
    Dim strName As String
    Dim bCheck As Boolean

    On Error Resume Next
    strName = Format(Date, "mmmm yyyy")
    bCheck = Len(Sheets(strName).Name) > 0

    If bCheck = False Then
        ThisWorkbook.Unprotect "MyPass"
        Worksheets("MASTER").Visible = xlSheetVisible 'unhide tab just in case hidden
        Set wsM = Sheets("MASTER")
        wsM.Copy Before:=Sheets(1)
        ActiveSheet.Tab.Color = RGB(146, 208, 80)
        ActiveSheet.Name = strName
        For Each ws In ActiveWorkbook.Worksheets
            Dim wtf As String
            wtf = ws.Name
            If (wtf <> strName) Or (wtf <> "MASTER") Then
                ws.Visible = xlSheetHidden
            End If
        Next ws
        ThisWorkbook.Protect "MyPass"
    End If

    Set wsM = Nothing
End Sub

It is supposed to create the new month then hide last moths tab leaving the new month and MASTER showing. No matter what I try it always hides the newly created tab and the MASTER tab if another tab is open. If the MASTER is the only tab open then it will create the new tab and hide it leaving the MASTER visible.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi
welcome to forum
untested but see if this update to your code does what you want

VBA Code:
Option Explicit
Sub AddMonthWkst()
    Dim ws          As Worksheet, wsM  As Worksheet
    Dim strName     As String
    Dim bCheck      As Boolean
   
    Const MyPassword As String = "MyPass"
   
    strName = Format(Date, "mmmm yyyy")
   
    With ThisWorkbook
        bCheck = Evaluate("isref('" & strName & "'!A1)")
        If bCheck = False Then
            .Unprotect MyPassword
           
            Set wsM = .Worksheets("MASTER")
            wsM.Visible = xlSheetVisible        'unhide tab just in case hidden
            wsM.Copy Before:=.Sheets(1)
           
            With .ActiveSheet
                .Tab.Color = RGB(146, 208, 80)
                .Name = strName
            End With
           
            For Each ws In .Worksheets
                Select Case ws.Name
                    Case strName, wsM.Name
                        ws.Visible = xlSheetVisible
                    Case Else
                        ws.Visible = xlSheetHidden
                End Select
            Next ws
        End If
       
       .Protect MyPassword
    End With
    Set wsM = Nothing
End Sub

Dave
 
Upvote 0
Hi
welcome to forum
untested but see if this update to your code does what you want

VBA Code:
Option Explicit
Sub AddMonthWkst()
    Dim ws          As Worksheet, wsM  As Worksheet
    Dim strName     As String
    Dim bCheck      As Boolean
  
    Const MyPassword As String = "MyPass"
  
    strName = Format(Date, "mmmm yyyy")
  
    With ThisWorkbook
        bCheck = Evaluate("isref('" & strName & "'!A1)")
        If bCheck = False Then
            .Unprotect MyPassword
          
            Set wsM = .Worksheets("MASTER")
            wsM.Visible = xlSheetVisible        'unhide tab just in case hidden
            wsM.Copy Before:=.Sheets(1)
          
            With .ActiveSheet
                .Tab.Color = RGB(146, 208, 80)
                .Name = strName
            End With
          
            For Each ws In .Worksheets
                Select Case ws.Name
                    Case strName, wsM.Name
                        ws.Visible = xlSheetVisible
                    Case Else
                        ws.Visible = xlSheetHidden
                End Select
            Next ws
        End If
      
       .Protect MyPassword
    End With
    Set wsM = Nothing
End Sub

Dave
Thanks, that worked perfectly, never thought to try select statements.
 
Upvote 0

Forum statistics

Threads
1,215,092
Messages
6,123,064
Members
449,090
Latest member
fragment

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