Criei o seguinte código VB para redimensionar a linha do cabeçalho quando uma célula dentro de um intervalo (B2:B1500) porque valores de data superiores a 28/12/2014 fariam com que o cabeçalho mostrasse um aviso de que essas datas, numa folha de horas, passariam para a Semana1 de 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