VBA Code to log users name and date

Malcolm torishi

Board Regular
Joined
Apr 26, 2013
Messages
219
i Have a excel spread sheet that is saved in Sharepoint. What I would like to do a black sheet within my spread sheet is have a running list of people’s name and date you opened up the file . Is there a VBA Code that can do this
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
This goes in the code module for ThisWorkbook:

Code:
Private Sub Workbook_Open()
  Dim wksUserLog As Worksheet
  Dim lngNextRow As Long
  
  On Error Resume Next
  Set wksUserLog = ThisWorkbook.Worksheets("User Log")
  
  On Error GoTo ExitProc
  If wksUserLog Is Nothing Then
    Set wksUserLog = ThisWorkbook.Worksheets.Add
    wksUserLog.Name = "User Log"
    wksUserLog.Range("A1:B1").Value = Array("Username", "Datetime")
  End If
  
  With wksUserLog
    lngNextRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
    .Cells(lngNextRow, "A").Value = Environ("Username")
    .Cells(lngNextRow, "B").Value = Now()
    .Columns("A:B").AutoFit
  End With
  
ExitProc:
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

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