The following VBA code, executed on a Windows Network computer, will give me the Windows Login ID of the user that's logged in to the computer:
Sub UserName()
MsgBox Environ("username")
End Sub
How do I get the full user name, not just the Windows Login ID?
Example: On this specific...