day( date )
Returns the day of the month from the date specified.
Keyword | Type | Description |
---|---|---|
|
Date and Time |
The date from which the day of the month will be extracted. |
Integer
1
day(datetime(2022,7,28,12,0,0))
Returns 28
.
1
day(date(2022,7,3))
Returns 3
.
1
day(today())
Returns the current day of the month. For example, on the third day, this returns 3
.
1
day(now() + 10)
Adding 10
moves the calendar forward by 10 days. Assuming that day(now())
returns 28
, for a month with 31 days, the return value is 7
. For a month with 30 days, the return value is 8
.
Feature | Compatibility | Note |
---|---|---|
Portals | Compatible | |
Offline Mobile | Compatible | |
Sync-Time Custom Record Fields | Compatible | Can be used to create a custom record field that only evaluates at sync time. |
Real-Time Custom Record Fields | Incompatible | Custom record fields that evaluate in real time must be configured using one or more Custom Field functions. |
Process Reports | Compatible | |
Process Events | Compatible |
day() Function