Waarom krijg ik bij deze code telkens de foutmelding 1004 ?
Met dank voor alle suggesties
Code:
Sub Workbook_open()
Sheets("Diensten").Select
[COLOR="#FF0000"]Columns("A:N").EntireColumn.AutoFit[/COLOR]
Application.ScreenUpdating = False
ActiveSheet.ScrollArea = "A4:N1200"
With ActiveSheet.Range("A4:D1200").Font
.Name = "Verdana"
.Size = 10
.FontStyle = "vet"
.ColorIndex = 0
End With
Application.ScreenUpdating = True
End Sub
Met dank voor alle suggesties