Excel – Total Age Formula

To calculate the total living years, months, days, hours, and minutes since the date of birth in Excel, you can use the following formulas:

  1. Years:=DATEDIF(A1, TODAY(), "Y")
  2. Months:=DATEDIF(A1, TODAY(), "YM")
  3. Days:=DATEDIF(A1, TODAY(), "MD")
  4. Hours:=(TODAY()-A1)*24
  5. Minutes:=((TODAY()-A1)*24)*60

Replace A1 with the cell that contains the date of birth. The DATEDIF function calculates the difference between two dates in years, months, and days, while the TODAY function returns the current date. For hours and minutes, the difference in days is multiplied by 24 and 60, respectively, to convert to hours and minutes. Make sure the date of birth is in a date format that Excel recognizes.

See also  HTML

Leave a Reply

Your email address will not be published. Required fields are marked *