change log with VBA

Mattlake

Board Regular
Joined
Apr 9, 2020
Messages
87
Office Version
  1. 2021
Platform
  1. Windows
Hi

I hope you can help me with a spreadsheet.

I have a spreadsheet with 3 tabs (AY21-22, AY22-23 and log[hidden]) that I need to track changes on.

I have found

VBA Code:
Private Sub workbook_beforesave(ByVal SaveAsUI As Boolean, cancel As Boolean)

Dim wbLog As Worksheet
Dim iLastRow As Integer

Set wbLog = Sheets("log")
iLastRow = wbLog.Cells(wbLog.Rows.Count, "A").End(xlUp).Row + 1

wbLog.Cells(iLastRow, 1).Value = Environ("username")
wbLog.Cells(iLastRow, 2).Value = Now

End Sub

which works to log the user and when they access.

I want to also log which cells are altered even if it is just which cells are edited. Is this possible?

I have tried googling different ways to final a solution but unable to find anything (not even on youtube)

So it may not even be possible but if a VBA master can tell me that it isnt possible i would be soo happy and relieved.

Regards

Matthew
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Please try this. I assumed you wanted the Log sheet to record these changes. I added fields onto the LOG sheet below. The VBA code below needs to be posted into the "ThisWorkbook" module of the project.

VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
  Dim Ar As Range
  Dim LogSht As Worksheet
  Dim LogUserHdr As Range
  Dim Cel As Range
  Dim Astr As String
  

  Select Case Sh.Name
    Case "AY21-22", "AY22-23"
      Set LogSht = Log
      Set LogUserHdr = LogSht.Range("LogUserHdr")
      Set Cel = LogSht.Cells(LogSht.Rows.Count, LogUserHdr.Column).End(xlUp).Offset(1, 0)
      Cel.Value = Application.UserName                                                        'Username
      Cel.Offset(0, 2).Value = Now()                                                          'Date / Time
      For Each Ar In Target.Areas
        If Len(Astr) > 0 Then
          Astr = Astr & ", " & Ar.Address
        Else
          Astr = Ar.Address
        End If
      Next Ar
      Cel.Offset(0, 1).Value = Astr
  End Select
  

End Sub

Book2
ABCD
1UserSheetRangeDate/Time
2JeffAY22-23$G$75/19/2023 7:43
3JeffAY22-23$C$115/19/2023 7:44
4JeffAY22-23$C$11:$M$285/19/2023 7:44
5JeffAY22-23$C$15:$D$17, $H$20:$H$22, $K$14:$K$165/19/2023 7:44
6JeffAY21-22$C$14:$D$14, $E$10:$F$10, $F$16:$G$165/19/2023 7:44
Log
 
Upvote 0
Oh, the cell A1 on the log sheet needs to have a named range called "LogUserHdr". Darn it, the Sheet named Log should have it's code named changed to Log. Just click on the sheet in VBA, in the properties window below, change the sheet code name.
 
Upvote 0
Now, if you workbook is large with a ton of formulas, this will slow things down a little more. This only tells you if cells were changed. It won't tell you if they got deleted, altered, or added.

You could record the cell contents after the change, but that would add way more content to your log.

And if you wanted to detect if the changes were malicious, you're going to need to add the library for user mind reading: MindReading101NonExistent.DLL
 
Upvote 0
Please accept this change in the code. I made some corrections


VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
  Dim Ar As Range
  Dim LogSht As Worksheet
  Dim LogUserHdr As Range
  Dim Cel As Range
  Dim Astr As String
  

  Select Case Sh.Name
    Case "AY21-22", "AY22-23"
      Set LogSht = ThisWorkbook.Worksheets("Log")
      Set LogUserHdr = LogSht.Range("LogUserHdr")
      Set Cel = LogSht.Cells(LogSht.Rows.Count, LogUserHdr.Column).End(xlUp).Offset(1, 0)
      Cel.Value = Application.UserName                                                        'Username
      Cel.Offset(0, 1).Value = Sh.Name                                                        'sheet name
      Cel.Offset(0, 3).Value = Now()                                                          'Date / Time
      For Each Ar In Target.Areas
        If Len(Astr) > 0 Then
          Astr = Astr & ", " & Ar.Address
        Else
          Astr = Ar.Address
        End If
      Next Ar
      Cel.Offset(0, 2).Value = Astr
  End Select
  

End Sub
 
Upvote 0
Solution
Thank you for this. i will never understand how you all keep this knowledge.

so i have pasted the new script into the this workbook object (or do I need to put it into a new module and set it to run automatically how ever I do this)

I have also changed the log sheet to Log

but when i complete a change on the AY22-23 sheet, it comes up with a debug on line
1684741104217.png


so i have likely mucked up just pasting

Regards

Matthew
 
Upvote 0
In post #3 I talked about the named range that you need to create. It's the header of the log table
 
Upvote 0
Sorry i feel I am being so dumb with this.

on the sheet called log I just put LogUserHdr into A1? or create the column titles as user , date etc?
 
Upvote 0
This site is here to learn. Ask as many questions as you need.
Put your cursor on Cell A1, then Using the Excel menu: Formulas > Name Manager > New > type in the name given and press enter
 
Upvote 0

Forum statistics

Threads
1,215,268
Messages
6,123,970
Members
449,137
Latest member
yeti1016

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