30 Advanced Excel Tips for 2026

Excel Champs / Excel Formulas List / How to Add Hours into Time in Excel
By Puneet Gogia (Microsoft MVP)

How to Add Hours into Time in Excel

30+ Advanced Excel Tips for 2026

No spam. Only Excel Stuff. God Promise. 😊

To add hours to a time, divide the hours by 24 and add: =A1+(3/24) adds three hours. The TIME function does it without the arithmetic: =A1+TIME(3,0,0).

To subtract, use a minus sign. Two things to watch.

If the total passes midnight, plain addition rolls into the next day and displays only the time part — use =MOD(A1+(3/24),1) to wrap it, or format as [h]:mm if you want to see the full elapsed total past 24 hours.

And TIME’s hour argument caps at 32767 and rolls over above 23, so TIME(25,0,0) gives 1:00 AM rather than 25 hours — for large hour values the division method is the reliable one.

To add an hour value into a time value in Excel, you can use a simple and short formula where you need to specify the original time from a cell and the hour(s) value that you want to add after dividing it by the 24 (which are totals hours that we have in a day). The following example shows a time value in cell A1 (12:01 AM). And here you need to add 3 hours

cell-with-time-value
Add Hours Into Time / Excel Formula

Formula to Add Hours in a Time

Following steps that you can use to add an hour in a time:

  1. First, refer to the cell where you have the time value (A1 in our example).
  2. After that, enter the sum operator and type the starting parentheses.
  3. Next, enter the hour value you want to add to the original time.
  4. Now, enter a division operator and type 24, the total number of daily hours.
  5. Finally, type closing parentheses and hit enter to get the result value.
formula-to-add-hours
=A1+(3/24)

The formula is quite simple. You must specify the original time hour value (divide it by 24).

[thrive_leads id=’112075′]

Use Time Function to Add Time

You can also use the time function to add an hour to a time value. You can see this in the following formula.

time-function-to-add-time

You need to specify the original time, use the time function, and only specify the hour argument with the hours you want to add.

time-function-with-hour-argument

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

Leave a Comment