Forum Discussion
Date values changing between Desktop and Browser
- 1 year ago
In Power BI Desktop:
Go to File > Options and settings > Options.
In the Regional Settings section, set the Locale for this file to English (United Kingdom).
Republish the report after changing this setting.Open Power BI Service (app.powerbi.com) and go to Settings (top-right corner > gear icon).
Check the Language setting and ensure itβs set to match your locale.
If nothing else works, explicitly format date columns using DAX:
FormattedDate = FORMAT([DateColumn], "DD/MM/YYYY")
If this helped, a Kudos π or Solution mark would be great! π
Cheers,
Kedar
Connect on LinkedIn
In Power BI Desktop:
Go to File > Options and settings > Options.
In the Regional Settings section, set the Locale for this file to English (United Kingdom).
Republish the report after changing this setting.
Open Power BI Service (app.powerbi.com) and go to Settings (top-right corner > gear icon).
Check the Language setting and ensure itβs set to match your locale.
If nothing else works, explicitly format date columns using DAX:
FormattedDate = FORMAT([DateColumn], "DD/MM/YYYY")
If this helped, a Kudos π or Solution mark would be great! π
Cheers,
Kedar
Connect on LinkedIn
Thanks, Using the DAX has fixed it, I will use this method until PBI fixes the issue