excel vba autofit code example
Example 1: vba column autofit
Worksheets("Sheet1").Columns("A:I").AutoFit
Example 2: excel vba autofit
' Autofits all columns / rows of the range
Range("MY_RANGE").EntireColumn.AutoFit
Range("MY_RANGE").EntireRow.AutoFit
' Autofits a single column / row
Range("MY_RANGE").Columns(1).EntireColumn.AutoFit
Range("MY_RANGE").Rows(1).EntireRow.AutoFit