Calculate Years, Months, Days elapsed from a certain date in Microsoft Excel
In order to calculate the time elapsed from a certain date, we will use a any date as an example
Enter date in cell A1: 01/01/1980
To calculate the number of years from the date, enter the following formula in cell B1: =YEAR(TODAY())-YEAR(A1)
The result (rounded): 23 Years
For a decimal solution, use the following formula: =DATEDIF(A1,TODAY(),”m”)/12
The result: 23.25 Years
To calculate the number of months from the date, enter the following formula in cell D1: =DATEDIF(A1,TODAY(),”m”)
The result: 279 Months
To calculate the number of days from the date, enter the following formula in cell E1: =DATEDIF(A1,TODAY(),”d”)
The result: 8499 Days
Related posts:
- Calculate number of Minutes between Dates
- Calculate Revenue from Google Adsense for any Website
- Combining Text and Values in one cell
- Download Antivirus BitDefender Internet Security 2010 with Free License valid for 6 months
- Useful Tips in Excel
- Avira AntiVir Premium v9 with Free 90 Days License Key
- Update Charts Automatically
- Calculate CO2 emission from your Blog or Website.
- Moving Between Precedent and Dependent Cells
- Protecting cells, sheets, workbooks, and files
|
|

Comments on this entry are closed.