The MINUTE function in Google Sheets extracts the minute component from a specific time value, returning a number between 0 and 59. It's a simple but essential tool for breaking down timestamps for analysis or reporting. Dive into our comprehensive guide to master its use.
Parameters
time: The time value, or cell reference containing a time, from which to extract the minute.
Step-by-Step Tutorial
-
Extracting the minute from a time value:
- Example:
=MINUTE("3:45:00 PM") - Result:
45
- Example:
-
Extracting the minute from a timestamp in a cell:
- Example: If
A1contains10:07:30 AM, then=MINUTE(A1)will return7.
- Example: If
Use Cases and Scenarios
- Time Log Analysis: Break timestamps down into hour, minute, and second components for detailed reporting.
- Scheduling Tools: Build custom scheduling logic that depends on the exact minute of an event.
- Data Cleaning: Extract and standardize the minute portion of inconsistent time entries.
Related Functions
HOUR: Returns the hour component of a specific time.SECOND: Returns the second component of a specific time.TIME: Converts hour, minute, and second into a time value.