FORMAT_DATE

Description

FORMAT_DATE formats a given date, from either an information or a text in ISO8601 format, into the specified format. There might be two documents that ask for a different date format, e.g. 28.02.2022 vs. 02-28-2022. The given format can contain the following options:

Example: German Format

FORMAT_DATE('2022-02-28', 'DD.MM.YYYY')

This returns 28.02.2022.

Example: US Format

FORMAT_DATE('2022-02-28', 'MM-DD-YYYY')

This returns 02-28-2022.

Last updated