Try this:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" And IsNumeric(Target.Value) Then
Dim x(), d&, i%, j%, n%
Application.EnableEvents = 0
i = [a1].Value
d = Format(DateSerial(i, 1, 1), 0)
j = Format(DateSerial(i + 1, 1, 1), 0) - d
ReDim x(1 To Int(j / 7) + 1, 1 To 1)
For i = 1 To j
If d Mod 7 = 1 Then
n = n + 1
x(n, 1) = d
End If
d = d + 1
Next
[a3:a100].Clear
[a3].Resize(n, 1).NumberFormatLocal = "ddd-mmm-dd-yyyy"
[a3].Resize(n, 1) = x
Application.EnableEvents = 1
End If
End Sub
hth
ikboy
Bookmarks