Stworzyłem następujący kod VB, aby zmienić rozmiar wiersza nagłówka, gdy komórka znajduje się w zakresie (B2:B1500), ponieważ wartości dat powyżej 12/28/2014 spowodowałyby, że nagłówek zawierałby ostrzeżenie, że daty te, w arkuszu czasu, będą widoczne w tygodniu 1 roku 2015:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As Range
' The variable KeyCells contains the cells that will
' cause an Action when they are changed.
Set KeyCells = Range("B2:B1500")
If Not Application.Intersect(KeyCells, Range(Target.Address)) _
Is Nothing Then
' Change the height of the header row when one of the defined cdlls is changed
Rows("1:1").EntireRow.AutoFit
End If
End Sub