Forum Discussion

amgelain's avatar
amgelain
Regular Visitor
2 years ago
Solved

First letter capitalized

Hello,   In the calendar table, I need the first letter of the month in capital letters. I created a calculated column and tested several functions without success.   Any suggestions to solve thi...
  • speedramps's avatar
    2 years ago

    The FORMAT mmmm is returning lower case because of your langauge settings.
    Different countries have different rules:-
     Click to learn about language settings  

     

    en: September

    es: septiembre

    fr: septembre

    de: September

    This will display months with capital first letter

    Month = UPPER(LEFT(FORMAT('Calendar'[Date],"mmmm"),1)) & MID(FORMAT('Calendar'[Date],"mmmm"),2, LEN(FORMAT('Calendar'[Date],"mmmm"))-1)

     

    Please now click the thumbs up and the [accept as solution] button.  Thank you.