Difference between revisions of "Documentation/How Tos/Calc: DAY function"
From Apache OpenOffice Wiki
< Documentation | How Tos
(Initial content) |
m |
||
(10 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
− | __NOTOC__ | + | {{DISPLAYTITLE: DAY function}} |
− | + | {{Documentation/CalcFunc DateTimeTOC | |
+ | |ShowPrevNext=block | ||
+ | |PrevPage=Documentation/How_Tos/Calc:_MONTH_function | ||
+ | |NextPage=Documentation/How_Tos/Calc:_WEEKDAY_function | ||
+ | }}__NOTOC__ | ||
== DAY == | == DAY == | ||
Returns the day of a given date. | Returns the day of a given date. | ||
− | |||
=== Syntax: === | === Syntax: === | ||
Line 10: | Line 13: | ||
: <tt>'''date'''</tt> may be text or a date-time serial number. | : <tt>'''date'''</tt> may be text or a date-time serial number. | ||
− | |||
=== Example: === | === Example: === | ||
− | <tt>'''DAY(" | + | <tt>'''DAY("2008-06-04")'''</tt> |
: returns <tt>'''4'''</tt>. | : returns <tt>'''4'''</tt>. | ||
Line 19: | Line 21: | ||
: where cell A1 contains the date <tt>'''23Nov83'''</tt> as a date-time serial number, returns <tt>'''23'''</tt>. | : where cell A1 contains the date <tt>'''23Nov83'''</tt> as a date-time serial number, returns <tt>'''23'''</tt>. | ||
+ | {{SeeAlso|EN| | ||
+ | * [[Documentation/How_Tos/Calc: YEAR function|YEAR]] | ||
+ | * [[Documentation/How_Tos/Calc: MONTH function|MONTH]] | ||
+ | * [[Documentation/How_Tos/Calc: WEEKDAY function|WEEKDAY]] | ||
+ | * [[Documentation/How_Tos/Calc: HOUR function|HOUR]] | ||
+ | * [[Documentation/How_Tos/Calc: MINUTE function|MINUTE]] | ||
+ | * [[Documentation/How_Tos/Calc: SECOND function|SECOND]] | ||
− | + | * [[Documentation/How_Tos/Calc: Date & Time functions#Date and Time overview|Date & Time overview]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | * [[Documentation/How_Tos/Calc: Date & Time functions|Date & Time functions]] | |
− | + | * [[Documentation/How_Tos/Calc: Functions listed alphabetically|Functions listed alphabetically]] | |
+ | * [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | ||
+ | [[Category: Documentation/Reference/Calc/Date and Time functions]] |
Latest revision as of 13:45, 30 January 2024
DAY
Returns the day of a given date.
Syntax:
DAY(date)
- returns the day of date as a number (1-31).
- date may be text or a date-time serial number.
Example:
DAY("2008-06-04")
- returns 4.
DAY(A1)
- where cell A1 contains the date 23Nov83 as a date-time serial number, returns 23.
See Also