How to Calculate Age in Minutes Using Google Sheets

Calculating age in minutes can be helpful for various purposes, such as finding the duration of a process or measuring the elapsed time since an event occurred. Google Sheets provides several functions that make it easy to calculate age in minutes.

Manual Calculation with a Formula

Here’s how you can calculate age in minutes using a traditional formula in Google Sheets:

  1. Enter the starting date and time in one cell and the current date and time in another cell. For example, if you want to calculate the age of a project from the start date and time, enter the start date and time in cell A2 and the current date and time in cell B2.
  2. Enter the following formula in another cell: =(B2-A2)*24*60. This formula subtracts the start date and time from the current date and time, giving the elapsed time in days. It then multiplies the result by 24 to convert the elapsed time to hours and then by 60 to convert the elapsed time to minutes.
  3. The result will show the project’s age in minutes.

For example, if you apply this formula to a project that started on May 1st, 2023, at 10:00 AM and the current date and time is May 11th, 2023, at 2:30 PM, you’ll get the result 14,670.

Formula arriving at age in minutes
Difference in Minutes

⚠️ For a dynamic result that shows the current age, use the NOW function for the value in B2.

Live Examples in Google Sheets

Make a copy of this Google Sheet to use the example.

TIMEDIF For Hours, Minutes, Seconds – No Formulas

Consider using the TIMEDIF add-on for an automatic calculation. This add-on creates an accurate result with no code.

Related Tutorials

  • Understanding Data Types in Google Sheets

    Learn about the different types of data you can use in a spreadsheet.

  • DATEDIF Function – Google Sheets

    The DATEDIF function calculates the difference between two days. You can return the difference in days, months, years, or combinations. Whereas the DAYS function will only return days, this function has multiple output options. The input for this function needs to be either surrounded by quotes or a cell reference. If your days, months, and…

  • DAYS Function – Google Sheets

    The DAYS function calculates the number of days between two dates.

  • Date Functions – Using Dates and Times in Google Sheets

    Learn the nuances of working with dates and times in Google Sheets.

  • How dates and times work in Google Sheets

    Contents1 How Dates Work1.1 Using Dates in Formulas1.2 Subtracting Two Dates: Example 11.3 Subtracting Two Dates: Example 21.4 The Beginning of Time2 How Times Work3 How Dates and Times Work Together3.1 Live Examples in Sheets4 Related Tutorials How Dates Work Though it may not be obvious initially, spreadsheets store dates as numbers instead of text.…