Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi,
Trying to turn a query I have on desktop into a dataflow. The main issue I am having now is that my date formats are dd/mm/yyyy which on my desktop query doesn't cause any problems. When I recreate the query in a dataflow I get a conflict of the data formats (it looks like dataflow is ignoring our region setting).
To get around this I'm trying to change the query step so instead of changing the column type to date I'm trying to put in a custom column using the #date function. I'm hoping this will get around the region issues.
= Table.AddColumn(#"Added Prefix", "Order Date1", each
#date(
Number.FromText(
Text.End([Order Date],4)
),
Number.FromText(
Text.Middle([Order Date],4,2)
),
Number.FromText(
Text.Start([Order Date],2)
)
),type date)However, I'm getting the below error
Not sure why this is happening as I'm not trying to convert to text ![]()
What you need to do is use the change type with locale, this can be done when you right click on the column go to the change type drop down and click with locale.
I do not know of a way to do locale type changes using the "type date" synatx.
I had never spotted that before! Brilliant stuff I'll give that a go.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 38 | |
| 33 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 59 | |
| 31 | |
| 27 | |
| 25 |