> For the complete documentation index, see [llms.txt](https://docs.editable.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.editable.io/formula-and-functions/date-functions/date.md).

# DATE

The DATE function takes date as input, in the form of a string or as a tuple and returns it in the specified format. If the format is not specified it returns the date in the user's browser locale format.

### Syntax <a href="#syntax" id="syntax"></a>

```
DATE(date,format)
//returns the date in the specified format

DATE(year,month,date)
//returns the date in the browser locale format
```

### Arguments <a href="#arguments" id="arguments"></a>

date - The input date in the form of a string. It can also be a node reference or a measure that contains the date. Required.

format - The desired format in which the input date should be displayed. Optional.

(or)

year - number.

month - number.

date - number.

### Return Value <a href="#return-value" id="return-value"></a>

Date.

### Example <a href="#example" id="example"></a>

```
DATE("05/29/2024")
//returns 29/5/2024

DATE(2024,05,24)
//returns 24/5/2024
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.editable.io/formula-and-functions/date-functions/date.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
