paquirl
Board Regular
- Joined
- Oct 12, 2010
- Messages
- 226
- Office Version
- 2016
- Platform
- Windows
I had this embedded code in a worksheet to auto re-size columns. When I upgraded to win10/excel2016 it no longer works. Please help!
Code:
Option Explicit
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.ScreenUpdating = False
ActiveSheet.Columns.AutoFit
End Sub