Hi All,
I'm working with this code to make all worksheets of a workbook with columns A, B & C a specific size.
Sub ColumnPrep()
'
Dim wks As Worksheet
Application.ScreenUpdating = False
For Each wks In Worksheets
wks.Activate
Range("A:A").Activate...