While that certainley is a more elegant way of solving the problem, her
is a simple way to work through the code (as I am begginning and assum
you know at least as much as I do).
------------
Sub Workbook_Open()
Range("A1") = Now()
Range("a1").NumberFormat = "mmmm d, yyyy"
End Sub
------------
The only thing you need to do is Change "A1" both times to the cel
that you need the date to be in, whether it is D3, F7, etc. The forma
is such that the date appears as June 3, 2004.
As I said, its a crude way of solving the problem, but at least its
general idea.
Hope this helps,
Broc