MonthName 函数 [VBA]

MonthName 函数返回指定月份数字的本地化的月份名称。

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


语法:


        MonthName(Month as Integer [,Abbreviate as Boolean])
    

返回值:

String

参数:

Month」: 值从 1 到 12,代表一月到十二月,将返回其本地化的月份名称。

Abbreviate」: 可选。布尔值,表示月份名称是否应该缩写。

错误代码:

5 无效的过程调用

示例:


        REM  *****  BASIC  *****
        Option VBASupport 1
        Sub Example_MonthName
         Dim mBirthday as Integer
         mBirthday = 1
         print mBirthday &" "& MonthName(mBirthday,False)
        End Sub
    

请支持我们!