Show Username

P

Param

Hi,

How to show current username appear at specific cell when the user open the
file.

TQ
 
B

Bob Phillips

'-----------------------------------------------------------------
Private Sub Workbook_Open()
'-----------------------------------------------------------------
With Thisworkbook.Worksheets("Sheet1")
.Range("A1").Value = Environ("UserName")
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code



--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
Top