Only make a code run from an approved user list.

KyleJackMorrison

Board Regular
Joined
Dec 3, 2013
Messages
107
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
Hello,
So i have a sheet when someone clicks a button and it shows the relevant hidden cells.

However i would like to restrict this to only approved people to have access to run this code.

Is it possible to have a list of users in 'Settings' sheet, and once the code is activated to run it or stop the code depending on the environ("username") list?

Thanks in advance.
Kyle
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
You could use something like
Code:
Sub KyleJackMorrison()
   Dim Nme As String
   Dim Fnd As Range
   Nme = Environ("username ")
   Set Fnd = Sheets("Settings").Range("A1:A100").Find(Nme, , , xlWhole, , , False, , False)
   If Fnd Is Nothing Then
      MsgBox "You don't have authority"
      Exit Sub
   End If
   'your code goes here
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,213,533
Messages
6,114,179
Members
448,554
Latest member
Gleisner2

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