TIME builds a real time value from separate hour, minute, and second numbers — the time equivalent of DATE.
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.
=TIME(hour, minute, second)| Argument | Description |
|---|---|
| hour required | The hour, 0-23. |
| minute required | The minute, 0-59. |
| second required | The second, 0-59. |
=TIME(14,30,0)Returns a time value displaying as 2:30 PM, depending on the cell's time format.
=TIME(A2,B2,C2)Combines hour, minute, and second values stored in three different cells.
=A2+TIME(0,90,0)TIME correctly handles the overflow, so 90 minutes properly rolls into hours when added to a start time.
TIME(25,0,0) does not mean "25 hours" — it wraps around, the same way DATE handles month/day overflow.
ExcelPro has 700+ hands-on Excel exercises across 7 career tracks — free to start, no download needed.
Start practicing free →