Convert a month from number to letter RESOLVED

Solved
agautier -  
mdccm Posted messages 1 Status Member -
Hello,

I would like a formula or a function that converts a month given as a number into words. In my Excel table, I have one column where I manually enter the date, and another column that retrieves only the month of this date as a number. I would like this number month to be converted into words (02 => February).

I have already tried customizing the format of the column to "mmmm," but for each line, it displays "Jan-00."

Thank you in advance

Audrey

4 answers

  1. antipolis a Posted messages 17152 Status Member 2 917
     
    =CHOOSE(MONTH(A1);"January";"February";"March";"April";"May";"June";"July";"August";"September";"October";"November";"December")
    13
    1. Franckz
       
      it is necessary not to write (MONTH)
      the correct function is =CHOOSE((A1);"January";"February"; etc ...)
      1