Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi Community..!!
I wanted to change date format (DD-MM-YYYY) into (YYYY-MM-DD) in Power Query Editor
I want above dates in the 2018-06-01 in Power Query Editor.
Please help me out to do this..!!
Solved! Go to Solution.
Hi @Anonymous ,
I wanted to change date format (DD-MM-YYYY) into (YYYY-MM-DD) in Power Query Editor
Why do you want to change date format from DD-MM-YYYY to YYYY-MM-DD?
If you want to keep the data type as "Date", it is no need to manually change it in Power Query Editor. It is based on your local machine's date formate.
You can change it in Power BI Desktop later.
If you want to keep the data type as text and since your date column has changed to "Date" type, create a custom column like this:
Text.From(Date.Year([Date])) & "-" & Text.From(Date.Month([Date])) & "-" & Text.From(Date.Day([Date]))
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I wanted to change date format (DD-MM-YYYY) into (YYYY-MM-DD) in Power Query Editor
Why do you want to change date format from DD-MM-YYYY to YYYY-MM-DD?
If you want to keep the data type as "Date", it is no need to manually change it in Power Query Editor. It is based on your local machine's date formate.
You can change it in Power BI Desktop later.
If you want to keep the data type as text and since your date column has changed to "Date" type, create a custom column like this:
Text.From(Date.Year([Date])) & "-" & Text.From(Date.Month([Date])) & "-" & Text.From(Date.Day([Date]))
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , You can create a new column as text or date
Text.End([Month]) & "-" & Text.Middle([Month],3,2) & "-" Text.Start([Month],2)
#date(Text.End([Month]) , Text.Middle([Month],3,2) , Text.Start([Month],2))
in case if date you can filter data > 2018
in case text > 2018-00-00
I have used below formula
But its showing error like this
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!