If you want to format a date with month in upper case, then hear is how you do it:
1. The general format for getting the month in three character is this:
=TEXT(cell_reference,”mmm”)
2. To get upper case you enclose the TEXT function within the UPPER function as follows:
=UPPER(TEXT(cell_reference,”mmm”))
So if we have a date in cell A1 for example then our functions will be as follows:
=UPPER(TEXT(A1,”mmm”))
If you want to return the full date then you have to concatenate the day and the year with the month as follows:
=DAY(A1)&UPPER(TEXT(A1,”mmm”))&YEAR(A1)
The final result will be somthing like: 15AUG2008














