View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Dave VB logic for excel Dave VB logic for excel is offline
external usenet poster
 
Posts: 16
Default What is the formula to capture username from system into excel she

Hello,

im working on excel sheet which use by multiple user. I want a perticular
cell in sheet to capture the username whenever they open the sheet. i've
questioned this before and i was give the formula below. I tried copy paste
the formula into vb section of excel sheet but doesnt seem to work. In the
formula there's no cell reference. So where the system will capture the
username into xecel sheet?

Function UserNameWindows() As String
UserName = Environ("USERNAME")
End Function

Please help..