VBA - Change date language

前端 未结 3 1327
遇见更好的自我
遇见更好的自我 2020-12-21 01:48

I\'m trying to solve such problem: In macro, that I\'m using, one of the parts is to retrieve date month (in full naming), currently is used :

LastMonth =          


        
3条回答
  •  星月不相逢
    2020-12-21 02:11

    Just use [$-409] to force English number format.

    .NumberFormat = "[$-409]mmmm yy"

    gives an output like e.g. "December 19".

    .NumberFormat = "[$-409]mmm yy"

    gives an output like e.g. "Dec 19".

提交回复
热议问题