View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Format date month as all CAPs 20FEB07

You can't unless you want to use a TEXT string as the date.

Manually typed in:

'20FEB07

Or, if the true date is already entered in a cell:

A1 = 20-Feb-07 (a true Excel DATE)

=UPPER(TEXT(A1,"ddmmmyy"))

Will return 20FEB07 as a *TEXT* string (not a true Excel DATE)

Biff

"excel-duh?" wrote in message
...
I'm a novice at Excel. How do I get the date format ddmmmyy to display the
month portion in CAPs? Thank you any assistance you can give.