Environ("username") doesn't seem to work

jmpatrick

Active Member
Joined
Aug 17, 2016
Messages
477
Office Version
  1. 365
Platform
  1. Windows
Happy rainy Monday!

I have the following code to run macros based on the user's name. By stepping through the Workbook_Open code on a couple machines with different users I have verified that it's not detecting the user's name at all. I'm not getting any errors but I must be doing something wrong. If it matters, all users are using Windows 10 Pro. Here's the code (All names have been changed to protect the innocent):

VBA Code:
Private Sub Workbook_Open()

  Application.Calculation = xlAutomatic

  Call SortByDate
 
  If Environ("username") = "User1" Then
  
  Call ViewJP
 
  Application.MoveAfterReturnDirection = xlToRight
 
  GoTo SkipDashboard
      
  ElseIf Environ("username") = "User2" Then
 
  Call ViewALR
 
  Application.MoveAfterReturnDirection = xlToRight
 
  GoTo SkipDashboard
 
  ElseIf Environ("username") = "User3" Then
 
  Call ViewALR
 
  Application.MoveAfterReturnDirection = xlToRight
 
  GoTo SkipDashboard
 
  ElseIf Environ("username") = "User4" Then
 
  Call ViewALR
 
  Application.MoveAfterReturnDirection = xlDown
 
  GoTo SkipDashboard
 
  ElseIf Environ("username") = "User5" Then
 
  Call ViewALR
 
  Application.MoveAfterReturnDirection = xlToRight
 
  GoTo SkipDashboard
 
  End If
 
  Call OpenDashboard
 
SkipDashboard:
 
End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Perhaps Environ("username") refers to the Office (Excel) username and not the Windows username? I'm trying to use the Excel username.
 
Upvote 0
The Environ("username") is the Windows login name, if you want the Excel username you need to use Application.Username
 
Upvote 1
Solution
The Environ("username") is the Windows login name, if you want the Excel username you need to use Application.Username

I just stumbled on that and came back to post. Works great. Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,162
Messages
6,123,382
Members
449,097
Latest member
Jabe

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