How to track changes of a shared workbook in a separate workbook

Feroz90

Board Regular
Joined
Apr 25, 2019
Messages
52
Hi All,

Is there any chance to track the changes of a shared workbook in a separate workbook.

Since the workbook needs to be shared with 20 users and adding the code to the same workbook will slow down the file. Since the file consists of 10 excel sheets.

Please help in adding a code to separate workbook to track all the changes with the username, from, to and time.

Thanks
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
That wouldn't help, as the code would still have to work with the workbook in question and hence be running in the same instance of Excel.
 
Upvote 0
Does it need to be a separate workbook? A text file would do it, just depends how organised you need the change data.

Something like this works:

Firstly create a text file in a shared location and call it something like ChangeLog.txt

This code goes in the "ThisWorkbook" object

Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    RecordChange Target
End Sub


Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
    sPreviousValue = CStr(Target.Value)
End Sub

Create a module and put this code in it, making sure you change the LogPath and LogName variables

Code:
Public sPreviousValue As String 'ensure this variable declaration is at the top of the module


Sub RecordChange(Target As Range)
    Dim LogPath As String, LogName As String
    Dim sUserName As String
    Dim sLog As String 'log text

    'Make sure you change these variables to suit
    LogPath = "C:\Test\" 
    LogName = "ChangeLog.txt"
    
    'get current, logged in, user
    sUserName = StrConv(Environ("UserName"), vbProperCase)
    
    sLog = sUserName & " | "
    sLog = sLog & "Workbook = " & ThisWorkbook.Name & " | "
    sLog = sLog & "Worksheet = " & ActiveSheet.Name & " | "
    sLog = sLog & "Previous Value = " & sPreviousValue & " | "
    sLog = sLog & "New Value = " & Target.Value & " | "
    sLog = sLog & Now
    
    Open LogPath & LogName For Append As [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] 
    
    Print [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] , sLog
    Close [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=1]#1[/URL] 
    
End Sub

It isn't perfect but it does track changes
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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