The TIME
function in Excel is used to create a time value from individual hour, minute, and second components. It returns a decimal number representing a specific time in Excel's time format. Below is an explanation of the TIME
function, along with examples and formulas that include dates and expanded usage.
Syntax of the TIME Function
=TIME(hour, minute, second)
hour: A number between 0 and 23 (representing hours in a 24-hour format).
minute: A number between 0 and 59 (representing minutes).
second: A number between 0 and 59 (representing seconds).
Examples of the TIME Function
1. Basic TIME Function
To create a time value for 3:30:45 PM:
=TIME(15, 30, 45)
Result: 3:30:45 PM
2. TIME Function with Date
To combine a date and time, use the DATE
and TIME
functions together:
=DATE(2023, 10, 25) + TIME(15, 30, 45)
Result: 10/25/2023 3:30:45 PM
3. TIME Function with Calculations
To add 2 hours, 15 minutes, and 30 seconds to a specific time:
=TIME(10, 0, 0) + TIME(2, 15, 30)
Result: 12:15:30 PM
4. TIME Function with Negative Values
If you input negative values, Excel will adjust the time accordingly:
=TIME(10, -15, 0)
Result: 9:45:00 AM
(15 minutes subtracted from 10:00 AM).
5. TIME Function with Fractions of a Second
To include milliseconds (e.g., 0.5 seconds):
=TIME(12, 30, 45.5)
Result: 12:30:45 PM
(Excel rounds to the nearest second).
6. TIME Function with 24+ Hours
To represent a time greater than 24 hours (e.g., 27 hours):
=TIME(27, 0, 0)
Result: 3:00:00 AM
(27 hours is equivalent to 3 AM on the next day).
7. TIME Function with Dynamic Inputs
Use cell references for dynamic time creation:
=TIME(A1, B1, C1)
Where:
A1
contains the hour (e.g., 14),B1
contains the minute (e.g., 20),C1
contains the second (e.g., 0).
Result: 2:20:00 PM
8. TIME Function with SUM
To sum multiple time values:
=SUM(TIME(1, 30, 0), TIME(2, 45, 0))
Result: 4:15:00 AM
(1 hour 30 minutes + 2 hours 45 minutes).
9. TIME Function with Conditional Formatting
Highlight cells where the time is greater than 12:00 PM:
Use the formula:
=TIME(12, 0, 0)
Apply conditional formatting to highlight cells greater than
12:00:00 PM
.
10. TIME Function with TEXT
Format the time as text:
=TEXT(TIME(15, 30, 45), "hh:mm:ss AM/PM")
Result: 03:30:45 PM
11. TIME Function with NOW
Combine TIME
with NOW
to create a custom timestamp:
=NOW() + TIME(2, 0, 0)
Result: Current date and time plus 2 hours.
12. TIME Function with TIMEVALUE
Convert a text string to a time value:
=TIMEVALUE("15:30:45") + TIME(1, 0, 0)
Result: 4:30:45 PM
(adds 1 hour to 15:30:45
).
Key Notes
Excel stores times as fractions of a day (e.g.,
0.5
represents 12:00 PM).Use
hh:mm:ss
orhh:mm AM/PM
formatting to display times correctly.Combine
DATE
andTIME
for datetime values.Negative time values may require enabling the
1904 date system
in Excel options.
No comments:
Post a Comment