Difference between revisions of "Documentation/How Tos/Calc: HOUR function"
From Apache OpenOffice Wiki
< Documentation | How Tos
Javier Lopez (talk | contribs) |
|||
Line 60: | Line 60: | ||
: where cell A1 contains the time <tt>'''9:25:10'''</tt> as a date-time serial number, returns <tt>'''9'''</tt>. | : where cell A1 contains the time <tt>'''9:25:10'''</tt> as a date-time serial number, returns <tt>'''9'''</tt>. | ||
− | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: YEAR function|YEAR]] | * [[Documentation/How_Tos/Calc: YEAR function|YEAR]] | ||
* [[Documentation/How_Tos/Calc: MONTH function|MONTH]] | * [[Documentation/How_Tos/Calc: MONTH function|MONTH]] |
Revision as of 07:30, 17 July 2018
CALC FUNCTIONS
HOUR
Returns the hour of a given time.
Syntax:
HOUR(time)
- returns the hour of time as a number, 0 - 23.
- time may be text or a date-time serial number.
Example:
HOUR("2008-01-06 21:30:15")
- returns 21.
HOUR(A1)
- where cell A1 contains the time 9:25:10 as a date-time serial number, returns 9.
See Also