Hi,
I found the following code to report cell changes:
Workbook event:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Parent.Name <> wSummary.Name Then Exit Sub
Application.EnableEvents = False
LogChange Target...