Extracted Data
1. Overview
Syntax | MINUTE(Serial_number,Format) | Returns the minute of a specified time. The minute is an integer ranging from 0 to 59. |
Parameter 1 | Serial_number | Represents the time with the minute to be returned. |
Parameter 2 | Format | For example, HH:mm:ss. |
2. Notes
The function allows the parameters to be empty. That is to say, the function can be MINUTE(). When the parameters are empty, the function returns the minute of the current system server time.
The first parameter is of the date or text type by default, and the second is of the text type by default.
3. Example
Formula | Result | Note |
---|---|---|
MINUTE() | 36 | The corresponding system server time is 2020-10-23 15:36:25. |
MINUTE("15:36:25") | 36 | |
MINUTE("15:36:25","HH:mm:ss") | 36 |
Real-Time Data
1. Overview
Syntax | MINUTE(Serial_number) | Returns the minute of a specified time. The minute is an integer ranging from 0 to 59. |
Parameter | Serial_number | Represents the time with the minute to be returned. |
2. Notes
The function allows the parameter to be empty. That is to say, the function can be MINUTE(). When the parameter is empty, the function returns the minute of the current system server time.
The parameter can be of the default date or text type.
3. Example
Formula | Result | Note |
---|---|---|
MINUTE() | 36 | The corresponding system server time is 2020-10-23 15:36:25. |
MINUTE("15:36:25") | 36 |