This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
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 April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 24 | |
| 23 |