VBA Next Month Name

VBA Next Month Name

Get Next Month Name From Today’s Date using Excel VBA Functions. Name of the Next month plays an important major role of a date. We can get Next month name using month function and can summarize data with it. Once we get month name we can Format name of the month by using format function as per our requirement.

VBA Find Name of the Next Month:

Let us see the procedure how to get name of the month from today’s date using MonthName function.

'Procedure to find Name of the Next Month From Date
Sub VBA_Get_Next_Month_Name()
    
    'Variable declaration
    Dim sMonth_Name As String
    
    'Retrieve month Name from date
    sMonth_Name = MonthName(Month(DateAdd("m", 1, Date)))

    'Display month name
    MsgBox "If current month is '" & MonthName(Month(Date)) & "' then" & vbCrLf & _
    "the next month name is : '" & sMonth_Name & "'", vbInformation, "Next Month Name"
    
End Sub

Explanation: In the above procedure we have used DateAdd, Month, Date and MonthName VBA functions. Here Month function is used to display month number. MonthName function helps to generate name of the month from specified month number. Here is the output screenshot for your reference.

VBA Next Month Name

Format Name of the Month:

We have different format methods to format name of the month. You can find output in an immediate window.

'Format Name of the Month
Sub VBA_Format_Month_Name()
    
    'Variable declaration
    Dim sMonth_Name As String
    
    sMonth_Name = Format("01/01/2018", "m")
    Debug.Print sMonth_Name
    
    sMonth_Name = Format("01/01/2018", "mm")
    Debug.Print sMonth_Name
    
    sMonth_Name = Format("01/01/2018", "mmm")
    Debug.Print sMonth_Name
    
    sMonth_Name = Format("01/01/2018", "mmmm")
    Debug.Print sMonth_Name
        
End Sub

Output screenshot: Here is the output screenshot of the above macro procedure. we have shown four different format methods.
Format Month Name

Instructions to Run VBA Macro Code or Procedure:

You can refer the following link for the step by step instructions.

Instructions to run VBA Macro Code

Other Useful Resources:

Click on the following links of the useful resources. These helps to learn and gain more knowledge.

VBA Tutorial VBA Functions List VBA Arrays VBA Text Files VBA Tables

VBA Editor Keyboard Shortcut Keys List VBA Interview Questions & Answers Blog

Leave a Comment