Forum Discussion
bo_afk
4 years agoPost Patron
Published report displays different date format
I have a Power BI report on my dekstop with a card visual displaying the date. The date format is "Day number, Month Name, Year". However, when I publish the report to PBI Service, the format changes...
Prakashk
3 years agoRegular Visitor
This works, But is it expected that every user makes necessary changes in their browser to see the date in the correct format?
Hopefully, there is a better way to manage this.
Regards,
aybarsacar
3 years agoFrequent Visitor
As the dashboards have many different users and can't manage their personal preferences on their browsers, I have found it more useful to hard code the date format where I show dates with the following dax as an example:
```
FORMAT( MAX(MD4C[CopyActivityDateTime]), "mm/dd/yyyy", "en-GB" )
```
cheers!