User ID/Network Logon

lucky

New Member
Joined
Feb 28, 2002
Messages
18
Hi All
Is it possible to have a function that runs with Auto_open of a workbook that can return the users ID or Network Logon to a cell in that work book??

Thanks in anticipation.
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hi! Please copy this into a standard module

Sub Auto_Open()
Dim objWSH As Object
Set objWSH = CreateObject("WScript.Network")
Cells(1, 1).Value = "UserDomain " & objWSH.UserDomain
Cells(2, 1).Value = "ComputerName " & objWSH.ComputerName
Cells(3, 1).Value = "UserName " & objWSH.UserName
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,659
Messages
6,120,786
Members
448,992
Latest member
prabhuk279

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