Click here to Skip to main content
Click here to Skip to main content

Calculating Duration Between Two Dates in Years, Months and Days

By , 25 Aug 2008
 
DurationCalculatorApp

Introduction

I was looking for a Duration calculator between two dates which gives duration in number of years, number of months and number of days together. It can be defined as Age Calculator which is able to give any one’s exact age in years, months and days.

But unfortunately I didn't find exactly what I was looking for. Most of the calculators give output either in years or in months or in weeks or in days and so on and even in milliseconds, but not all the information together.

I realize that there should be something to calculate duration between two dates and give output in years, months and days together.

Problem

In most of the solutions for this problem, I found that the difference is calculated by the following procedure:

First calculate ‘TimeSpan’ from difference between two dates. Then from the time span, calculate days, from days calculate months, and from months or days calculate years.

This calculates right up to day calculation. But when you calculate month from day, then there is conflict. Because, the length of all the months (length means days) is not the same. Some months contain 28 days, some 30 and 31 for regular years. So, two months could be equivalent to 59 (January + February) days, 61 (March + April) days, 62 (July + August) days and even 60 (February leap year + March) days for leap year. After that when calculating years, there is another conflict, does the year contain 365 days or 366 days (in case of leap year)?

Actually this problem can be easily solved for a single year by adding many conditions. But for a long duration, it is difficult to trace all the leap years and finally generate accurate duration in days, months and years.

Background

Before starting the calculation, we just try to recollect our arithmetic operation basics. When we subtract 19 from 23 (23-19) then what happens? First we try to subtract the first digit ‘9’ (right side of 19) from first digit ‘3’ (right side of 23). Then we find that 3 is less than 9. So, add 10 with ‘3’ and subtract ‘9’ from (3+10); after that we add ‘1’ with ‘1’ second digit of 19 and subtract from the second digit ‘2’ of 23. We add 10 because the base of all the digits is 10.

In the same way, when we try to subtract one date from another (ignoring time) then we have to consider three different type/based numbers, that is day of the month; month of the year and year itself. Let's say we want to subtract date2 from date1 [date format YYY-mm-dd].

  • date1: 2000- 3- 1
  • date2: 1999- 4-10
  • dura: 0y - 10m - 21d

Here date1 is greater than date2, but day of the date1 ‘1’ is smaller then the day of the date2 ‘10’. So according to the arithmetic rule, before subtracting ‘10’ from ‘1’, we have to add a certain number (say x) with ‘1’ to the day of date1. Here x is equivalent to days (considering days is base of a month) of the month of date2. And also add ‘1’ with ‘4’ the month of date2. The number (x) will be different for different months, because different months contain different number of days. For example: for January x = 31, for February x= 28 or 29(for leap year) and so on.

After calculating days, we subtract the month of date2 ‘4’ including ‘1’ (according to day calculation) that is ‘4+1’ from ‘3’. As month of date1 (4+1=5) is less than the month of date2 ‘3’, we have to add 12 with month of date1 and add ‘1’ with year of date2. We are adding ‘12’ with month of date1 because each year contains exactly 12 months.

Finally, the year calculation is a simple arithmetic calculation.

Using the Code

Duration Calculation

Global Variables

private int[] monthDay = new int[12] { 31, -1, 31, 30, 31, 30, 31, 31, 30, 31, 30,
31 };
private DateTime fromDate;
private DateTime toDate;
private int year;
private int month;
private int day; 
  • int[] monthDay’ defines Number of days in month, index 0=> January and 11=> December. February contain either 28 or 29 days, that's why here value is -1 which means it will be calculated later.
  • DateTime fromDate’ contain the start date value or smaller date value between two dates.
  • DateTime toDate’ contains the end date value or bigger date value between two dates.
  • int year’ contains year(s) of the output.
  • int month’ contains month(s) of the output.
  • int day’ contains day(s) of the output.

Prepare Data for Calculation

To calculate duration, we need two dates:

public DateDifference(DateTime d1, DateTime d2)

Here d1 is the first date and d2 is the second date.

if (d1 >d2)
{
    this.fromDate = d2;
    this.toDate = d1;
}
else
{
    this.fromDate = d1;
    this.toDate = d2;
} 

From the two dates, we identify which date is bigger. The bigger one is set as toDate and the smaller one is fromDate so that we always get a positive duration.

Calculation

Day Calculation
increment = 0; 
if (this.fromDate.Day > this.toDate.Day)
{ 
    increment = this.monthDay[this.fromDate.Month - 1]; 
}

If ‘this.fromDate.Day’ is greater than ‘this.toDate.Day’, then we store the value in ‘increment’ which will be added to ‘this.toDate.Day’. To get the proper number ‘int[] monthDay’ will help us.

if (increment== -1)
{
    if (DateTime.IsLeapYear(this.fromDate.Year))
    {
        increment = 29;
    } 
    else
    {
        increment = 28;
    }
}

Here we check if the month is February? If it is, then what are the number of days?

if (increment != 0)
{    
    day = (this.toDate.Day+ increment) - this.fromDate.Day;
    increment = 1; 
}
else
{       
    day = this.toDate.Day - this.fromDate.Day;
}

The simple arithmetic operation is completed. And now ‘increment’ contains the number which will be added to ‘this.fromDate.Month’.

Up to this day, calculation is completed and ‘day’ contains the output’s day(s) result.

Month Calculation
if ((this.fromDate.Month + increment) > this.toDate.Month)
{   
    this.month = (this.toDate.Month+ 12) - (this.fromDate.Month + increment);
       increment = 1;
}
else
{    
    this.month = (this.toDate.Month) - (this.fromDate.Month + increment);
    increment = 0;
}

Month calculation is very simple and almost like Day calculation. Here if ‘this.toDate.Month’ is smaller than the result of ( ‘this.fromDate.Month’ + ‘increment’), then just add ‘12’ to ‘this.toDate.Month’ and add ‘1’ to ‘this.fromDate.Year’ (which is stored in ‘increment’); Otherwise, it is just simple subtraction.

Here we add 12 because each year contains exactly 12 months.

Year Calculation
this.year = this.toDate.Year - (this.fromDate.Year + increment);

This is just simple arithmetic operation. Nothing to say.

Final Results
public int year;
public int month;
public int day;

These are the variables which contain the results of the calculation.

public override string ToString()
{    
    return this.year + "Year(s), " + this.month + " month(s), " + this.day + " day(s)";
} 

To get the formatted output, we override the tostring method.

Output

Here is the output for the corresponding input. Input Date format is (yyyy-mm-dd) for user friendly view.

Input:
2000-12-1  
1999-2-3
Output: 1 Year(s), 9 month(s), 26 day(s)  

Input:
1984-2-14 
2008-8-20 
Output: 24 Year(s), 6 month(s), 6 day(s)  

Input: 
2008-7-14  
1960-6-14 
Output: 48 Year(s), 1 month(s), 0 day(s)  

Input: 
2008-7-14  
1960-6-14 
Output: 48 Year(s), 1 month(s), 0 day(s)  

Input: 
2008-7-13  
1960-5-5 
Output: 48 Year(s), 2 month(s), 8 day(s) 

Conclusion

This article will help you to find out the duration of dates in year, month and day format. The whole code is uploaded here, so anyone can play with it. And if there are any suggestions or corrections, please feel free to share.

History

  • 25th August, 2008: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mohammed Ali Babu
Software Developer AIUB
Bangladesh Bangladesh
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMore easymemberGustavo Santis13 Mar '13 - 16:28 
Questiontymemberdipan chikani25 Aug '12 - 9:00 
GeneralYou are great!!memberAviMor24 May '12 - 11:08 
GeneralYou are great!!memberAviMor24 May '12 - 11:07 
GeneralMy vote of 5memberMarkDaniel5 Jan '12 - 12:08 
GeneralMy Vote of 5memberRaviRanjankr1 Dec '11 - 4:08 
GeneralMy vote of 5memberben jamir30 Nov '11 - 20:59 
QuestionThanks [modified]memberMember 32546119 Jul '11 - 1:58 
AnswerRe: Thanksmemberacko0856 Sep '11 - 13:01 
AnswerRe: Thanks (issue with leap year) ...memberxirc_za12 Mar '13 - 12:57 
AnswerRe: Thanks [modified]memberMeenakshiLuthra22 Jan '12 - 22:37 
GeneralSmall correctionmemberacko0857 May '11 - 18:29 
GeneralGood work - made few changes to make it more accuratememberJuvenile8 Dec '10 - 0:17 
GeneralMy vote of 5membermasterJalchr25 Nov '10 - 21:10 
GeneralHours, Mins, Seconds as well.memberArmoghan Asif23 Nov '10 - 5:26 
GeneralExcellent jobmembersamMaster1 Dec '09 - 20:09 
GeneralBetter class (I think :-)) [modified]memberPeter Hendrix14 Jun '09 - 21:42 
GeneralRe: Better class (I think :-))memberArmoghan Asif23 Nov '10 - 1:15 
GeneralGood jobmemberHP Scheller19 May '09 - 1:39 
QuestionImplementing in VB?memberwesticle8 May '09 - 6:04 
AnswerRe: Implementing in VB?memberwesticle10 May '09 - 23:04 
Generalsmall helpmembersamumajeed8 Dec '08 - 0:35 
GeneralRe: small helpmemberMohammed Ali Babu10 Dec '08 - 15:17 
Generalnice job!! But I have 1 doubtmemberudayakumarziv9 Nov '08 - 18:53 
GeneralRe: nice job!! But I have 1 doubtmemberMohammed Ali Babu10 Dec '08 - 15:15 
GeneralNice, but..memberjuices4 Sep '08 - 20:47 
GeneralRe: Nice, but..memberMohammed Ali Babu5 Sep '08 - 18:13 
Generalwell donememberajanta30 Aug '08 - 22:57 
GeneralRe: well donememberMohammed Ali Babu1 Sep '08 - 17:59 
GeneralnicememberAshrafur Rahaman30 Aug '08 - 21:20 
GeneralRe: nicememberAbhijit Jana30 Aug '08 - 21:34 
GeneralRe: nicememberMohammed Ali Babu1 Sep '08 - 18:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 26 Aug 2008
Article Copyright 2008 by Mohammed Ali Babu
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid