Extracted Data
1. Overview
Syntax | HOUR(Serial_number,Format) | Returns the hour of a specified time value. The function specifies the returned value as an integer from 0 (0:00) to 23 (23:00). |
Parameter | Serial_number | Represents the time that contains the hour you want to find. |
Notes
The function allows the parameters to be empty. That is to say, you can simply use HOUR(). When the parameters are empty, the function returns the hour 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 |
---|---|---|
HOUR("11:32:40") | 11 | |
HOUR() | 15 | The corresponding system server time is 2020-10-23 15:36:02. |
HOUR("11:32:40","HH:mm:ss") | 11 |
Real-Time Data
1. Overview
Syntax | HOUR(Serial_number) | Returns the hour of a specified time value. The function specifies the returned value as an integer from 0 (0:00) to 23 (23:00). |
Parameter | Serial_number | Represents the time that contains the hour you want to find. |
2. Notes
The function allows the parameter to be empty. That is to say, you can simply use HOUR(). When the parameter is empty, the function returns the hour of the current system server time.
The parameter can be of the default date or text type.
3. Example
Formula | Result | Note |
---|---|---|
HOUR("11:32:40") | 11 | |
HOUR() | 15 | The corresponding system server time is 2020-10-23 15:36:02. |