VBA Code Needed To Open A Hidden Worksheet If System User is a Certain Value

Hainesy

New Member
Joined
Jan 10, 2018
Messages
12
Hi Excel Geniuses,

Would any of you be able to assist me with some VBA code please that I can use in Excel to open up a worksheet called "Data" when the file is opened BUT ONLY when the system user name is "Joe Bloggs" or "John Smith".

The "Data" worksheet should remain hidden for any other user.

First person to help wins a pint.

Many thanks
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Hi,
Place this in the Thisworkbook Code Page


Rich (BB code):
Private Sub Workbook_Open()
    Dim ValidUser As Variant, UserNames As Variant


    UserNames = Array("Joe Bloggs", "John Smith")


    ValidUser = Application.Match(Environ("USERNAME"), UserNames, False)
    Worksheets("Data").Visible = IIf(Not IsError(ValidUser), xlSheetVisible, xlSheetVeryHidden)
End Sub

Change the network usernames shown in RED as required.

Unfortunately, forum rules forbid acceptance of any reward for providing assistance - but thanks for the thought.


Hope Helpful

Dave
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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