Date question

S

Stuart

Have
..Range("I2").Value = Format(Date, "dddd dd mmm yyyy")

Cannot find how to change this to give the full value for the
month, rather than a truncated version.

How is this done, please?

Regards.
 
R

Rob Bovey

Stuart said:
Have
.Range("I2").Value = Format(Date, "dddd dd mmm yyyy")

Cannot find how to change this to give the full value for the
month, rather than a truncated version.

Hi Stuart,

Just add a fourth "m" to the month string.

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *
 
P

Patrick Molloy

Are you sure that you want to set text in the cell?
You'll lose some flexibility
as an alternative

With Range("I2")
.Value = Date
.NumberFormat = "dd mmmm yyyy"
End With

--
Patrick Molloy
Microsoft Excel MVP
---------------------------------
I Feel Great!
---------------------------------
Stuart said:
Many thanks to you both.

Regards.
 
Top