DateTime.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 DateTime value from a set of date formats and culture value.
DateTime.FromText(dateTime as nullable text, optional culture as nullable text) as nullable date
| Argument | Description |
|---|---|
| dateTime | The text value to convert. |
| 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. |
DateTime formats
YYYY-MM-DDThh:mm
YYYYMMDDThh:mm
YYYY-MM-DDThh:mm:ss
YYYYMMDDThh:mm:ss
YYYY-MM-DDThh:mm:ss.nnnnnnn
YYYYMMDDThh:mm:ss.nnnnnnn
Terms
Y = years
M = months
D = days
h = hours
m = minutes
s = seconds
n = fractional seconds
DateTime.FromText("2010-12-31T01:30:00") equals YYYY-MM-DDThh:mm:ss
Show: