Problem with Auto Fit Sub on open
You might want to use the EntireColumn property...
Worksheets("Inquiry").Range("B2:B100").EntireColum n.AutoFit
HTH
--
Regards,
Zack Barresse, aka firefytr
MsgBox "fire" & "fytr" & Chr(64) & "vba" & "express" & Chr(46) & "com"
"Qaspec" wrote in message
...
I have the follwoign code to Sort a column on a worksheet and resize to
autofit but I keep getting run time error 1004. Any Advice?
Private Sub Workbook_Open()
Worksheets("Inquiry").Range("A2:B100").Sort _
Key1:=Worksheets("Inquiry").Range("A2"), _
Key2:=Worksheets("Inquiry").Range("B100")
Worksheets("Inquiry").Range("B2:B100").Rows.AutoFi t
End Sub
|