Date and time functions
Use date and time functions to convert and transform date and time data. For example, you can change the date format, convert time based on timezones, convert text to date or time data, and more. Below is a list of supported date and time functions with descriptions and details for each.
When to use it:Ā You have aĀ dateļ»æĀ value that you wish to convert (format) to aĀ textļ»æĀ value (textual human-readable representation) likeĀ 12-10-2019 20:30Ā orĀ Aug 18, 2019 10:00 AM
The second column indicates the expected type. If different type is provided,Ā type coercionļ»æĀ is applied.
Parameter | Expected type | Description |
---|---|---|
date | date | Date value to be converted to a text value. |
format | text | Format specified usingĀ tokens for date/time formattingļ»æ. Example:Ā DD.MM.YYYYĀ HH:mm |
timezone | text | Optional. The timezoneĀ used for the conversion. SeeĀ List of tz database time zones,Ā column "TZ database name" for the list of recognized timezones. If omitted, uses the organization's timezone. You can edit your time zoneļ»æ. |
Text representation of the given Date value according to the specified format and timezone. Type is Text.
The Organization's and Web's timezone were both set toĀ Europe/PragueĀ in the following examples.
Function | Result |
---|---|
formatDate(1. Date created; MM/DD/YYYY ) | 10/01/2018 |
formatDate(1. Date created; YYYY-MM-DD hh:mm A ) | 2018-10-01 09:32 AM |
formatDate(1. Date created; DD.MM.YYYY HH:mm ; UTC ) | 01.10.2018 07:32 |
formatDate(now; MM/DD/YYYY HH:mm ) | 19/03/2019 15:30 |
When to use it:Ā You have aĀ textļ»æĀ value representing a date (e.g.Ā 12-10-2019 20:30Ā orĀ Aug 18, 2019 10:00 AM) and you wish to convert (parse) it to aĀ Dateļ»æĀ value (binary machine-readable representation).
The second column indicates the expected type. If different type is provided,Ā Type Coercionļ»æĀ is applied.
Parameter | Expected type | Description |
---|---|---|
text | text | Text value to be converted to a date value. |
format | text | Format specified usingĀ tokens for date/time formattingļ»æ. Example:Ā DD.MM.YYYYĀ HH:mm |
timezone | text | Optional. The timezoneĀ used for the conversion. SeeĀ List of tz database time zones,Ā column "TZ database name" for the list of recognized timezones. If omitted, uses the organization's timezone. You can edit your time zoneļ»æ. Example:Ā Europe/Prague,Ā UTC |
Date representation of the given text value according to the specified format and timezone. Type is date.
Please note thatĀ in the following examples the returned date value isĀ expressed according to ISO 8601, but the actual resulting value is of type date.
Returns a new date as a result of adding a given number of days to a date. To subtract days, enter a negative number.
Returns a new date as a result of adding a given number of hours to a date. To subtract hours, enter a negative number.
Returns a new date as a result of adding a given number of minutes to a date. To subtract minutes, enter a negative number.
Returns a new date as a result of adding a given number of months to a date. To subtract months, enter a negative number.
Returns a new date as a result of adding a given number of seconds to a date. To subtract seconds, enter a negative number.
Returns a new date as a result of adding a given number of years to a date. To subtract years, enter a negative number.
Returns a new date with the seconds specified in parameters. Accepts numbers from 0 to 59. If a number is given outside of this range, it will return the date with the seconds from the previous or subsequent minute(s), accordingly.
Returns a new date with the minutes specified in parameters. Accepts numbers from 0 to 59. If a number is given outside of this range, it will return the date with the minutes from the previous or subsequent hour(s), accordingly.
Returns a new date with the hour specified in parameters. Accepts numbers from 0 to 59. If a number is given outside of this range, it will return the date with the hour from the previous or subsequent day(s), accordingly.
Returns a new date with the day specified in parameters. It can be used to set the day of the week, with Sunday as 1 and Saturday as 7. If the given value is from 1 to 7, the resulting date will be within the current (Sunday-to-Saturday) week. If a number is given outside of the range, it will return the day from the previous or subsequent week(s), accordingly.
Returns a new date with the day of the month specified in parameters. Accepts numbers from 1 to 31. If a number is given outside of the range, it will return the day from the previous or subsequent month(s), accordingly.
Returns a new date with the month specified in parameters. Accepts numbers from 1 to 12. If a number is given outside of this range, it will return the month in the previous or subsequent year(s), accordingly.
Returns a new date with the year specified in parameters.
If you need to calculate a date corresponding toĀ the n-th day of week in a month (e.g. 1st Tuesday, 3rd Friday, etc.), you can use the following formula:
The formula contains the following items:
Value | Description |
---|---|
1.n | n-th day:
|
2.dow | Day of the week:
|
1.date | The date determines the month. To calculate n-th day of week inĀ currentĀ month useĀ theĀ nowĀ variable |
If you want to calculate only one specific case, e.g. 2nd Wednesday, you may replace the itemsĀ 1.nĀ andĀ 2.dowĀ in the formula with the corresponding numbers. For 2nd Wednesday in the current month you would use the following values:
- 1.n = 2
- 1.dow = 3
- 1.date = now
- setDate(now;1) returns first of current month
- formatDate(....;E)Ā returns day of week (1, 2, ... 6)

The values ofĀ D1Ā andĀ D2Ā above have to be of type date. If they are of type string (e.g. "20.10.2018"), use theĀ parseDate()Ā function to convert them to type date.
TheĀ round()Ā function is used for cases when one of the dates falls within the daylight savings time period and the other does not. In these cases, the difference in hours is by one hour less/more and dividing it by 24 gives a non-integer results.
When specifying a date range (e.g. in a search module) spanning the whole previous month asĀ a closed intervalĀ (the interval thatĀ includesĀ both its limit points), it is necessary to calculate the last day of the month.
2019-09-01 ā¤ DĀ ā¤ 2019-09-30
In some cases, it is necessary to calculate not only the last day of month, but its last millisecond:
2019-09-01T00:00:00.000ZĀ ā¤ DĀ ā¤Ā 2019-09-30T23:59:59.999Z
If the result should respect your timezone settings, simply omit the UTC argument:
However, it is preferable to use aĀ half-open intervalĀ instead (the interval thatĀ excludesĀ one of its limit points), specifying the first day of the following month instead and replacing theĀ less or equal thanĀ operator withĀ less than:
2019-09-01 ā¤ DĀ <Ā 2019-10-01
2019-09-01T00:00:00.000ZĀ ā¤ DĀ <Ā 2019-10-01T00:00:00.000Z
Values ofĀ secondĀ should be number type. This function is suited only if the second value is less than 86400 ( less than a day ).