Thread: Date problem
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Paul Lautman
 
Posts: n/a
Default Date problem

PE wrote:
I have created a custom date format "YEAR ENDED "dd mmmm yyyy which
displays as YEAR ENDED 31 March 2006.

I can't get the date to appear in uppercase. I've tried the format
as DD MMMM YYYY but this has no effect.

Is there a way of doing this?

Al


Instead of using cell formatting, use the following formla:

="YEAR ENDED "&UPPER(TEXT(NOW(),"dd mmmm yyyy"))

replace NOW() with any or formula that contains the date that you are
interested in.