Get minute as a number (0-59) from time
=MINUTE(serial_number)
| Parameter | Description |
|---|---|
serial_number |
A valid date or time. |
To use the MINUTE function, supply a time value:
=MINUTE("9:45 AM") // returns 45
=MINUTE("3:10 PM") // returns 10
You can use the MINUTE function to extract the minute into a cell, or feed the result into another function like the TIME function. For example, with
=TIME(7,MINUTE(A1),0) // returns 7:45 PM