VBA: 'application.username' with multiple usernames

BenGee

Board Regular
Joined
Mar 5, 2016
Messages
195
Hi

Current code;
Code:
Private Sub Workbook_Open()
Dim sh As Worksheet
    For Each sh In Worksheets
        sh.Visible = True
Next
Dim sht As Worksheet
        If Application.UserName = "Name 1", "Name 2", "Name 3" Then Exit Sub
        For Each sht In ThisWorkbook.Sheets
            If sht.Name <> "Thresholds" Then
            sht.Visible = xlSheetVeryHidden
 End If
 Next
    Sheets(Environ("UserName")).Visible = True
 End Sub

However, this line isn't working;
Code:
       If Application.UserName = "Name 1", "Name 2", "Name 3" Then Exit Sub

But works with only;
Code:
       If Application.UserName = "Name 1" Then Exit Sub

Can't seem to figure it out. Any help would be fantastic! Thanks in advance
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
However, this line isn't working;
Code:
       If Application.UserName = "Name 1", "Name 2", "Name 3" Then Exit Sub

Hi, it would need to be written more like this:

Code:
If Application.UserName = "Name 1" Or Application.UserName = "Name 2" Or Application.UserName = "Name 3" Then Exit Sub

Or an alternative might be to use a Select Case statement - something like:

Code:
Select Case Application.UserName
  Case "Name 1", "Name 2", "Name 3": Exit Sub
  Case Else
      For Each sht In ThisWorkbook.Sheets
          If sht.Name <> "Thresholds" Then
             sht.Visible = xlSheetVeryHidden
          End If
      Next
End Select
 
Upvote 0
Code:
If InStr(1, "|Name 1|Name 2|Name 3|", "|" & Application.UserName & "|") > 0 Then Exit Sub
 
Upvote 0

Forum statistics

Threads
1,214,936
Messages
6,122,340
Members
449,079
Latest member
rocketslinger

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