Display Month (MMMM) in uppercase

S

ssmith

When I display the month via MMMM, it returns the month as January,
Feburary.....
I would like it to be displayed as JANUARY, FEBURARY. Any thoughts?
 
J

JE McGimpsey

When I display the month via MMMM, it returns the month as January,
Feburary.....
I would like it to be displayed as JANUARY, FEBURARY. Any thoughts?

Unfortunately the only way I know to do it in place is to use VBA to
turn the date into a text string - which then renders it useless for
many functions.

If your date is calculated, or you can use a helper column, put the date
in the helper column and use

=UPPER(TEXT(A1,"dd mmmm yyyy"))

However, in general, I don't recommend using all caps anywhere...
 

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

Top