Calculate Years Between two Dates in Excel VBA

Calculate Years Between two Dates

Calculate Years Between two Dates in Excel VBA using VBA formulas. We use DateDiff VBA Function to determine the number of Years between two dates. In order to calculate number of Years between two dates we need start date and end date. It returns an integer value as a result. We use Excel DateDiff function in Excel to perform same task.

Macro to Calculate Number of Years Between two Dates in Excel VBA

Let us see the macro to calculate or count number of Years Difference Between two Dates in Excel VBA.

'Calculate Years Between two Dates in Excel VBA
Sub VBA_Calculate_Years_Between_Two_Dates()
    
    'Variable declaration
    Dim sDate As Date, eDate As Date
    Dim iValue As Integer
    
    'Start Date
    sDate = "10-Jan-2020"
    
    'End Date
    eDate = "15-Sep-2040"
    
    iValue = DateDiff("yyyy", sDate, eDate)
    
    'Display output on the screen
    MsgBox "The number of years between two dates : " & iValue, vbInformation, "Years Between Two Dates"
    
End Sub

Here is the output screen shot of above macro.
Calculate Years Between two Dates

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