30 Advanced Excel Tips for 2026

Excel Champs / Excel Formulas List / How to Sum Time in Excel (Formula + Tips)
By Puneet Gogia (Microsoft MVP)

How to Sum Time in Excel (Formula + Tips)

30+ Advanced Excel Tips for 2026

No spam. Only Excel Stuff. God Promise. 😊

Summing times is just =SUM(B2:B10) — the catch is the format. Excel stores time as a fraction of a day, so a total of 34 hours 30 minutes comes out as 1.4375, and the standard time format shows only the 0.4375 part, displaying 10:30 instead of 34:30. The whole number is being read as a full day and dropped from view.

To fix it, select the total cell, press Ctrl+1 → Custom, and enter [h]:mm. The square brackets tell Excel to let hours run past 24 instead of wrapping.

Use [h]:mm:ss if you need seconds, or September:ss to see the whole total as minutes. Two related things.

To turn the total into a number for billing or payroll, multiply by 24: =SUM(B2:B10)*24 gives 34.5 hours as a decimal — format that cell as Number, not Time. And to add a fixed amount to a total, add it as a time value: =A1+TIME(0,30,0) adds thirty minutes.

In Excel, if you want to sum time values, you need to use the sum function to sum the values and then you need to change the format to show the total hours and minutes. Below is a list of time values that we have sum in cell C2.

sum-time-in-excel

In this tutorial, we learn to write this formula and apply correct formatting to it.

Write Formula to Sum Time in Excel

  1. First, in cell C2, enter the sum function.
  2. Now, enter the starting parentheses.
  3. After that, refer to the range of cells where you have time values.
  4. In the end, enter the closing parentheses and hit enter to get the result.

This will give you a sum of values, but this format is not correct and we need to change this format using custom formatting.

formula-to-sum-time
  1. While selecting the cell, open the format option with the keyboard shortcut (Ctrl + 1).
  2. Now, click on the Custom option.
  3. After that, click on the format input bar.
  4. Next, enter the [h]:mm in the input bar.
  5. In the end, click OK to apply the formatting.
change-format-of-the-cell

The moment you click OK, it will show you the total number of hours and minutes.

total-number-of-hours-and-minutes

You Need to Understand This

Excel stores the date and time as a number in the backend and you have the format on the cell. So if you convert your time values into values they will look something like the below.

understand-time-values

Time values are always in decimals.

Now when you sum these values, it returns 1.4375 in the result.

As I said, time values are always in decimals, when you apply time format (normal time format HH:MM AM/PM), Excel shows you the time according to the remaining decimal value which is 0.4375, and consider the integer which is 1 as a complete day.

time-values-always-in-decimal

To overcome this problem, you need to use a custom format that we have used in our method. When you add square brackets with the format, it shows the total hours in the result.

[h]:mm
custom-format-for-total-hours

Get the Excel File

Puneet Gogia

Written by

Puneet Gogia

Microsoft MVP — Excel · Founder, Excel Champs

Twelve years of teaching Excel, and a decade before that using it as a data analyst. Every tutorial here is written from a file I actually built.

3M+ readers helped
1,000+ tutorials written
Since 2015 teaching Excel

2 thoughts on “How to Sum Time in Excel (Formula + Tips)”

  1. Good morning sir I want to added 30 minutes in total 2,530 hours. Please tell me how to calculate in excel with formula

    Reply

Leave a Comment