MonthName Function [VBA]

The MonthName function returns the localized month name of a specified month number.

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])

Return type:

String

அளவுருக்கள்:

Month: Value from 1 to 12, January to December, whose localized month name need to be returned.

Abbreviate: Optional. A Boolean value that indicates if the month name is to be abbreviated.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

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

Please support us!