Formula Guide

The Excel TIME Function
explained simply

TIME builds a real time value from separate hour, minute, and second numbers — the time equivalent of DATE.

ExcelPro · 3 min read · Updated June 2026
Contents
  1. What does TIME do?
  2. Syntax
  3. 3 examples
  4. FAQ

What does TIME do?

TIME combines an hour, minute, and second into a single working time value, the same way DATE combines year, month, and day into a date.

It is most useful when those three components come from separate cells or calculations rather than being typed directly.

Syntax

=TIME(hour, minute, second)
ArgumentDescription
hour requiredThe hour, 0-23.
minute requiredThe minute, 0-59.
second requiredThe second, 0-59.

Examples

Example 1
Build 2:30 PM
=TIME(14,30,0)

Returns a time value displaying as 2:30 PM, depending on the cell's time format.

Example 2
Build a time from separate cells
=TIME(A2,B2,C2)

Combines hour, minute, and second values stored in three different cells.

Example 3
Add 90 minutes to a start time
=A2+TIME(0,90,0)

TIME correctly handles the overflow, so 90 minutes properly rolls into hours when added to a start time.

Common mistakes

⚠️ Forgetting TIME wraps values over 24 hours

TIME(25,0,0) does not mean "25 hours" — it wraps around, the same way DATE handles month/day overflow.

FAQ

Can TIME accept decimal seconds?
It accepts whole seconds; for finer precision, more advanced time arithmetic is needed.

Practise Excel with real data

ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.

Start practicing free →

Related formulas

NOW TODAY DATE