Forum Discussion
Possible Localization issue
- 6 months ago
Hi ManchevB ,
I tried from end with sample data. It is working fine. Please refer below snap.
It appears this issue might require deeper investigation from the Microsoft Fabric support team. I recommend opening a Microsoft support ticket so they can trace the issue. To raise a support ticket for Fabric and Power BI, kindly follow the steps outlined in the following guide:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
Regards,
Dinesh
If your source is dd/mm/yyyy, don’t use English (US). Use English (United Kingdom-or other depending on your need) (or another dd/mm culture).
-
In Power Query: right-click the column → Change Type → Using Locale… → Type = Date, Locale = English (United Kingdom).
Or hard-code it (most deterministic):
= Table.TransformColumns(
#"Previous Step",
{{"Won/Lost Date", each Date.FromText(_, "en-GB"), type date}}
)