VBA - Track/log changes - Store and retreive values from several cells - Small change needed

lovallee

Board Regular
Joined
Jul 8, 2002
Messages
220
Hello,

Setup: I use the two macros below to log changes (i.e. keep an audit trail) in a worksheet (using Excel's "Track changes" tool forces me to share the workbook...and sharing comes with loads of limitation...).

Issue: It works great except for one thing: if I paste new data over a range a cells (i.e. variable "Target" contains more than one cell), the 2nd macro variable "Previous value" only returns the value of the first cell over which new data was pasted.

Question: How can I modify the code so that variable "Previous value" is stored as an array of all the selected cells in the first macro and retreived as such in the second macro?

Thanks!


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Store current value of seleted cell
Application.EnableEvents = True
PreviousValue = Target.Value
End Sub


Private Sub Worksheet_Change(ByVal Target As Range)

Dim LR As Long
Dim c As Range
On Error Resume Next


Application.EnableEvents = False


If Target.Value <> PreviousValue Then

    With Sheets("LogSheet")
        
        For Each c In Target
        LR = .Cells(Rows.Count, "A").End(xlUp).Row + 1
        .Cells(LR, "A").Value = ActiveSheet.Name & "!" & c.Address
        .Cells(LR, "B").Value = Now
        .Cells(LR, "C").Value = Environ("UserName")
        .Cells(LR, "D").Value = PreviousValue
        .Cells(LR, "E").Value = c.Value
        Next c
    End With
End If

Application.EnableEvents = True

End Sub
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try this...

VBA Code:
Dim PreviousValues As Variant

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    
    'Store current values of all cells
    Application.EnableEvents = True
    PreviousValues = Me.UsedRange.Value
    
End Sub

Private Sub Worksheet_Change(ByVal Target As Range)
    
    Dim LR     As Long
    Dim c      As Range
    
    On Error Resume Next
    
    Application.EnableEvents = False
    
    If Target(1).Value <> PreviousValues(Target(1).Row, Target(1).Column) Then
        With Sheets("LogSheet")
            For Each c In Target
                
                LR = .Cells(Rows.Count, "A").End(xlUp).Row + 1
                .Cells(LR, "A").Value = ActiveSheet.Name & "!" & c.Address
                .Cells(LR, "B").Value = Now
                .Cells(LR, "C").Value = Environ("UserName")
                .Cells(LR, "D").Value = PreviousValues(c.Row, c.Column)
                .Cells(LR, "E").Value = c.Value
                
            Next c
        End With
    End If
    
    Application.EnableEvents = True
    
End Sub
 
Last edited:
Upvote 0
Thanks AlphaFrog!

I does not seem to work either but I will continue to work around it and post a solution if I find one...
 
Upvote 0
It worked for me for what it's worth.

What did it do; error, nothing, wrong values?
Does your used range start at cell A1?
 
Upvote 0
I changed it to the code below but issue seems to be that the first macro does not store an array of value in variable "PreviousValues"...Should I use VBA's Array() function?


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    'Store current values of all cells
    Application.EnableEvents = True
    PreviousValues = Target.Value2
End Sub


Private Sub Worksheet_Change(ByVal Target As Range)
    
    Dim LR     As Long
    Dim c      As Range
    
    On Error Resume Next
    
    Application.EnableEvents = False
    For Each c In Target
        If Target(c).Value <> PreviousValues(c) Then
            With Sheets("LogSheet")
                     LR = .Cells(Rows.Count, "A").End(xlUp).Row + 1
                    .Cells(LR, "A").Value = ActiveSheet.Name & "!" & c.Address
                    .Cells(LR, "B").Value = Now
                    .Cells(LR, "C").Value = Environ("UserName")
                    .Cells(LR, "D").Value = PreviousValues(c)
                    .Cells(LR, "E").Value = c.Value
            End With
        End If
    Next c
    Application.EnableEvents = True
    
End Sub
 
Upvote 0
Sorry AlphaFrog...It did work after all! I had copied in the wrong sheet...
Thanks a million!
 
Last edited:
Upvote 0
Update: I slightly adapted the code as per below to
1) only log actual changes when several cells are pasted (i.e. cells for which value has not changed will not trigger a log entry).
2) log changes resulting from an "undo"
It starts to behave like Excel's "Track changes" tool, but without the need to share workbook!


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Store current values of all cells
    Application.EnableEvents = True
    PreviousValues = Me.UsedRange.Value
End Sub


Private Sub Worksheet_Change(ByVal Target As Range)

Dim LR     As Long
Dim c      As Range

Application.EnableEvents = False

         With Sheets("LogSheet")
            For i = 1 To Target.Cells.Count
                If Target(i).Value <> PreviousValues(Target(i).Row, Target(i).Column) Then
                     LR = .Cells(Rows.Count, "A").End(xlUp).Row + 1
                    .Cells(LR, "A").Value = ActiveSheet.Name & "!" & Target(i).Address
                    .Cells(LR, "B").Value = Now
                    .Cells(LR, "C").Value = Environ("UserName")
                    .Cells(LR, "D").Value = PreviousValues(Target(i).Row, Target(i).Column)
                    .Cells(LR, "E").Value = Target(i).Value
                Else
                End If
            Next i
        End With

'Re-store values in case of an "undo" (which do not trigger Worksheet_SelectionChange)
   PreviousValues = Me.UsedRange.Value

Application.EnableEvents = True
End Sub
 
Upvote 0
Hello again,

I now realise that the follow code (see previous posts) is slowing down enormously the selection of cells in large worksheets. For example, selecting the next cell by clicking, say "arrow down" or "arrow right" will result in Excel taking about a second or two to actually select the next cell.

Question: Is there a way to replace "UsedRange.Value" by something more efficient? or otherwise speed up the process? Thanks!


Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    'Store current values of all cells
    PreviousValues = Me.UsedRange.Value
End Sub
 
Upvote 0
@lovallee Did you get a solution to this that didn't slow down your workbook? I'm trying to get it to work also if a range of cells are pasted into rather than just a single cell
 
Upvote 0

Forum statistics

Threads
1,216,009
Messages
6,128,258
Members
449,435
Latest member
Jahmia0616

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