How to get English month name from date in Russian Excel?
Asked Answered
K

2

5

I am unable to get month name in Excel.

Neither =TEXT(...;"mmmm") not doesn't work.

I found, only Russian M's are working and giving Russian month name, despite of language settings

enter image description here

Latin M's give nothing.

Are there any other settings to force month name language?

UPDATE

Setting date format nationality didn't help:

enter image description here

Kudva answered 20/4, 2017 at 16:51 Comment(8)
Try this: =TEXT(B2;"[$-eng-us]MMMM")Lockwood
or this =TEXT(B2;"[$-409]MMMM")Lockwood
I like this solution! Do you know if there's a list of approved locales? Using "[$-fra-fr]MMMM" brings up Arabic on mine!Montemontefiascone
@YiminRong which Arabic Kuwait, Jordan, Lebanon...Ahq
Full ListAhq
@ScottCraner but the M's should be Russian. It doesn't work with English.Kudva
@ScottCraner , insted of ;Lacefield
@Lacefield only if your local settings use that. Some local settings use ';' instead.Lockwood
M
7

Thanks for additional details. It appears to be a long standing issue with MS Office. See How to prevent Excel to use the OS regional settings for date patterns in formulas for a related issue and some partial solutions.

In particular, hardcoding using CHOOSE might be your way to go:

=CHOOSE(MONTH(B2);"Jan";"Feb";"Mar";"Apr";"May";"Jun";"Jul";"Aug";"Sep";"Oct";"Nov";"Dec")

Also see Scott Craner's comment regarding =TEXT(B2;"[$-0409]MMMM") which looks like a quick fix. But note that the MMMM has to be in your locale, so the spreadsheet might not be portable. The CHOOSE option would be better in this case.

Montemontefiascone answered 20/4, 2017 at 16:58 Comment(0)
D
0

I found a way to fix this problem. First you need to go to Excel options and click "Advanced". After that, you need to scroll down to the bottom of this page and edit the "Edit Custom Lists..." button located in the "General" tab. Image for first step

Finally, you should add your own lists by clicking NEW LIST. Image for final steps

January February March April May June July August September October November December

Disjuncture answered 18/9, 2022 at 20:2 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.