Datedif() Function


Purpose:

This function calculates difference between two dates. it can show the result in days, months and years.


Syntax:

=datedif(start_date,end_date,"unit")

start_date
this is earliest of the two dates
end_date
this is the most recent of the two dates
Unit
The type of information that you want returned

Unit
Returns
"Y"
The number of complete years in the period.
"M"
The number of complete months in the period.
"D"
The number of days in the period.
"MD"
The difference between the days in start_date and end_date. The months and years of the dates are ignored.
"YM"
The difference between the months in start_date and end_date. The days and years of the dates are ignored
"YD"
The difference between the days of start_date and end_date. The years of the dates are ignored.


           

Remarks

  • Dates are stored as sequential serial numbers so they can be used in calculations. By default, December 31, 1899 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,448 days after January 1, 1900.
  • The DATEDIF function is useful in formulas where you need to calculate an age. 

follow us on http://arivilm.blogspot.in/

No comments:

Post a Comment

OR Function