Date.FromText
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns a Date value from a set of date formats and culture value, following ISO 8601 format standard.
Date.FromText(date as nullable text, optional culture as nullable text) as nullable date
| Argument | Description |
|---|---|
| date | A string value to transorm. |
| optional culture | A text value corresponding to the culture values supported on your version of Windows, such as "en-US". If the culture is not specified, the current user culture is used. For a list of culture names, see National Language Support (NLS) API Reference. |
Supported formats
yyyy-MM-dd
YYYYMMDD
M/d/yyyy
Terms
Y = years
M = months
D = days
- If the culture is not specified, the current user culture is used.
Date.FromText("2010-02-19") equals Date,yyyy-MM-dd
Show: