TG2812

Board Regular
Joined
Apr 15, 2015
Messages
180
Hi,

I'm trying to track changes from the the sheet "Main" and document/track these changes back in sheet "Tracking".
However when I make some changes in sheet main, nothing happens in the sheet tracking. Any idea why?

The code I'm using is the following:


Dim oldAddress As String
Dim oldValue As String
-----------------------------------------------------------------

Private Sub Workbook_SheetChange(ByVal sh As Object, ByVal Target As Range)

Dim sh As String
sh.name = "Main"

If WS.name <> Tracking Then
Application.EnableEvents = False


Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = Range("A" & Target.Row)
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 1).Value = Range("B" & Target.Row)
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 2).Value = Range("C" & Target.Row)
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 3).Value = Range("D" & Target.Row)
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 4).Value = oldValue
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 5).Value = Target.Value
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 6).Value = Environ("username")
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 7).Value = Now
Sheets("Tracking").Hyperlinks.Add anchor:=Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 8), Address:="", SubAddress:="'" & WS.name & "'!" & oldAddress, TextToDisplay:=oldAddress
End If
Application.EnableEvents = True


End Sub

---------------------------------------------------------

Private Sub Workbook_SheetSelectionChange(ByVal sh As Object, ByVal Target As Range)
On Error GoTo Err
oldValue = Target.Value
oldAddress = Target.Address

Err:
End Sub
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
.
This macro goes in ThisWorkbook module :

Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
x = Sheets.Count
ReDim arr(1 To x)
For i = 1 To UBound(arr)
    arr(i) = "Sheet " & i & " " & Sheets(i).Name
Next
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(, 6) = Array(Now(), Environ("UserName"), "", "", "", "wb Close")
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(, 6).Resize(, UBound(arr)) = arr
ActiveWorkbook.Save
End Sub


Private Sub Workbook_Open()
x = Sheets.Count
ReDim arr(1 To x)
For i = 1 To UBound(arr)
    arr(i) = "Sheet " & i & " " & Sheets(i).Name
Next
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(, 6) = Array(Now(), Environ("UserName"), "", "", "", "wb Open")
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(, 6).Resize(, UBound(arr)) = arr
End Sub

This goes in the Sheet Main module :

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    With Application
        .EnableEvents = False
        .Undo
        Sheets("Tracking").Cells(Rows.Count, 1).End(xlUp).Offset(1).Resize(, 4) = Array(Now(), Environ("UserName"), Target.Address(0, 0), Target.Value)
        .Undo
        Sheets("Tracking").Cells(Rows.Count, 1).End(xlUp).Offset(, 4) = Target.Value
        .EnableEvents = True
        Target.Offset(1).Activate
    End With
    x = Sheets.Count
ReDim arr(1 To x)
For i = 1 To UBound(arr)
    arr(i) = "Sheet " & i & " " & Sheets(i).Name
Next
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(, 6).Resize(, UBound(arr)) = arr
Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(, 7).Resize(, UBound(arr)) = ""


End Sub


In the TRACKING sheet, row #1 ... enter the following :

A
B
C
D
E
F
G
1
Date / Time
UserCellOld ValueNew ValueWorkbook Open
Workbook Close
Sheet Names
 
Upvote 0
Thanks.

Questions;
Why cant i keep the original code? This one seems much more complicated, no?
What is the code you came up with actually doing? When I'm changing a number in the worksheet "Main" -> nothing is getting reported in the sheet "Tracking"
 
Upvote 0
.
I was able to get everything working except the last line in your macro where it appears you are wanting to paste a link ?

Code:
Dim oldAddress As String
Dim oldValue As String
'-----------------------------------------------------------------


Private Sub Workbook_SheetChange(ByVal sh As Object, ByVal Target As Range)


Dim ws As Worksheet
Dim rng As Range: Set rng = Application.Range("A:D")
Dim Column As Range

On Error Resume Next


If Not Target.Column <> 1 Or Not Target.Column <> 2 Or Not Target.Column <> 3 Or Not Target.Column <> 4 Then
    If sh.Name <> "Tracking" Then
            
        Application.EnableEvents = False
        
        
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = Range("A" & Target.Row)
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 1).Value = Range("B" & Target.Row)
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 2).Value = Range("C" & Target.Row)
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 3).Value = Range("D" & Target.Row)
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 4).Value = oldValue
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 5).Value = Target.Value
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 6).Value = Environ("username")
        Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 7).Value = Now
        'Sheets("Tracking").Hyperlinks.Add anchor:=Sheets("Tracking").Range("A" & Rows.Count).End(xlUp).Offset(0, 8), Address:="", SubAddress:="'" & ws.Name & "'!" & oldAddress, TextToDisplay:=oldAddress
        
    
    End If
End If
Application.EnableEvents = True




End Sub


'---------------------------------------------------------


Private Sub Workbook_SheetSelectionChange(ByVal sh As Object, ByVal Target As Range)
On Error Resume Next
If sh.Name <> "Tracking" Then
    oldValue = Target.Value
    oldAddress = Target.Address
End If
End Sub
 
Upvote 0
Many thanks! It works! the enableevents procedure was disabled and was preventing the macro from running.

Another question: I will need to add another column to ensure all changes are neutral (net 0).
Example: if I withdraw 2, I need to add 2 somewhere else -> balance equals 0

How can I embed this logic in the code and remind user that the the remaining balance is positive (or negative) and need to be fixed before closing workbook?
 
Upvote 0
.
Hmmm ... you've lost me on that one.

Can you post your workbook to DROPBOX or GOOGLE CLOUD or AMAZON CLOUD .. something like that so I can see what it is you are doing ?

Provide a BEFORE and AFTER view of what you envision to help make it more understandable.

Thanks.
 
Upvote 0
Sorry but I have not got an access to these platforms. I will attempt to express the requirements herebelow.
Basically what I'm trying to attempt can be summarized in the below chart:

ReferenceCountryProduct RangeWarehouseProduction monthPrevious QuantityNew QuantityChanges Balance
Peanut134SAZGermanyFoodCologneMar-19264
Butter23GermanyFoodCologneMar-1931-22
Toast98YTGermanyFoodCologneMar-1931-20
Pasta34ZSWUKFoodLondonApr-19105-55

<colgroup><col><col><col><col><col><col><col><col><col></colgroup><tbody>
</tbody>

Requirements;

#1: The remaining balance for a given country, product range, warehouse and production month always need to be equal to 0.
Example: I increase my production of Peanut134SAZ by 4 in March. I need to reduce the Butter23 by 2 and Toast98YT by 2. My remaining balance equals 0 as the surplus created by Butter134SAZ has been taken out from other references.

#2: The remaining balance for a given country, product range, warehouse and production month does not equal to 0.
Example: I reduce the production of Pasta34SW by 5 in April. I consequently need to increase my production on other products during April to bring my remaining balance down to 0. A message should appear to the user before closing workbook if remaining balance for a particular product is not equal to 0.

Note: Production will be impacted in worksheet "Main". Changes will be listed under sheet "Tracking". If we could depart from the code pasted above, this would be great. I believe a few line of codes should be added but I'm not knowledgeable enough to carry on by my own.


Ideally once the tracking table is complete and the user finishes completing all necessary adjustments, it would be nice to this table via Outlook (just the email window with table copied).


Thanks a lot in advance for your help.
 
Upvote 0

Forum statistics

Threads
1,214,786
Messages
6,121,546
Members
449,038
Latest member
Guest1337

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