J
JStiehl
Is it possible to change this macro to only autofit the row height on rows
254-332 in the workbook? I am using this macro:
Option Explicit
Private Sub Workbook_SheetCalculate(ByVal Sh As Object)
Application.EnableEvents = False
Sh.Rows.AutoFit
Sh.Rows("1.33").AutoFit
Application.EnableEvents = True
EndSub
Thanks in advance for your help.
254-332 in the workbook? I am using this macro:
Option Explicit
Private Sub Workbook_SheetCalculate(ByVal Sh As Object)
Application.EnableEvents = False
Sh.Rows.AutoFit
Sh.Rows("1.33").AutoFit
Application.EnableEvents = True
EndSub
Thanks in advance for your help.