Update: Issue Resolved A colleague of mine was changing a cell during Workbook_BeforeSave()
without disabling events, therefore triggerin
It was a coding mistake on our side:
A colleague of mine was changing a cell during Workbook_BeforeSave() without disabling events, therefore triggering Worksheet_Change().
The fix was easy. In Workbook_BeforeSave():
Application.EnableEvents = False
' Some final changes
Application.EnableEvents = True
And that was it :)