30 Advanced Excel Tips for 2026

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

How to Add Seconds to Time in Excel (Formula)

30+ Advanced Excel Tips for 2026

No spam. Only Excel Stuff. God Promise. 😊

To add seconds to a time, divide the seconds by 86400 — the number of seconds in a day — and add: =A1+(34/86400) adds 34 seconds. The TIME function does the same without the arithmetic: =A1+TIME(0,0,34).

To take the number of seconds from a cell rather than typing it in, use =A1+(B1/86400), which lets you drag the formula down a column. To subtract, use a minus sign.

Three things to watch. If the result shows as a decimal rather than a time, the cell needs a time format — press Ctrl+1 and pick one that includes seconds, like h:mm:ss, or you won’t see the change at all.

If the total passes midnight, plain addition rolls into the next day; use =MOD(A1+(34/86400),1) to wrap it, or format as [h]:mm:ss to see the full elapsed total past 24 hours. And TIME’s seconds argument caps at 32767, so for anything larger the division method is the one to use.

To add seconds into a time value in Excel, you can use a simple and short formula where you need to refer to the original time from a cell and the second(s) value that you want to add after dividing it by the 86400 (which are totals seconds that we have in a day).

Below we have a time value in cell A1 (11:30:18 AM). And you need to add 34 seconds into this time.

time-value-in-cell

Excel Formula to Add Seconds to a Time Value

You can use the below steps:

  1. First, enter the equal operator in a cell and refer to the cell where you have the time.
  2. After that, enter the addition operator and then enter starting parentheses.
  3. Now, enter the value of seconds you want to add to the time.
  4. Next, enter the division operator and enter 86400.
  5. In the end, enter the closing parentheses and hit enter to get the result.
add-seconds-to-time-value
=A1+(34/86400)
[thrive_leads id=’112075′]

Use the TIME Function to Add Seconds

In the same way, you can also use Excel’s TIME function to add seconds into a time. See the below example.

time-function-to-add-seconds
  1. In this formula, you need to refer to the cell where you have the time.
  2. After that, use the addition operator and enter the TIME function.
  3. In the time function, there are three arguments to define: hour, minute, and second. Use zero for hours and minutes; enter the seconds you want to add to the original time.
  4. In the end, hit enter to get the result.
=A1+TIME(0,0,34)

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