FormatDate
The FormatDate()
function converts a date to a specified format.
Typical elements that can be used in the date format: yyyy: full year; MM: month number with leading zero; dd: day-number with leading zero; HH: 24-hour time with leading zero; h: 12-hour time without leading zero; mm: minutes with leading zero; ss: seconds with leading zero; fff: fraction of a second (milliseconds in this case).
See the [Microsoft documentation] (https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx) to learn more about format strings.
This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.
Returns a new text string that is the text representation of a date.
Returns Invalid expression
if Date
is unknown or the indicated format is not valid for dates.
Syntax
Parameters
Name | Type | Required | Description |
---|---|---|---|
| date time | ☑️ | a date |
| text or formatstring | ☑️ | the format is used to specify how the date should be represented, text or a format string can be used. |
| text | ☑️ | this parameter is used to specify the date representation of that language |
Format strings
Format name | Example | Description |
---|---|---|
ShortDate | 8-4-2022 | day month and year in numbers. |
ShortDateTime | 8-4-2022 17:51 | day, month, year and time in numbers |
LongDate | vrijdag 8 april 2022 | day of the week and month in text with the day and year in numbers. |
LongDateTime | vrijdag 8 april 2022 17:51 | day of the week and month in text with the day, year and time in numbers. |
Iso8601 | 2022-04-08T17:51:38 | date in the iso8601 standard |
When using a format string, the separator and order of your date is dependent on your date settings. You can find and change this setting per portal, see more about portal and language settings here.
If the format
or language
parameter contains an unknown value, then the default portal language is used to format the string.
Last updated