Date question

  • Thread starter Thread starter Stuart
  • Start date Start date
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.
 
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 *
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top