File size: 653 Bytes
0dc6fb4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
' =============================================================================
' DO NOT use File → Import on this file.
' Open ThisWorkbook in VBA, then paste ONLY the procedure below.
'
' After updating AmazonUrlCleaner.bas: remove the old module, re-import the new
' AmazonUrlCleaner.bas, then ensure ThisWorkbook still has Workbook_SheetChange.
' =============================================================================

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    On Error GoTo ErrorHandler
    HandleAmazonUrlSheetChange Sh, Target
    Exit Sub

ErrorHandler:
    Application.EnableEvents = True
End Sub