- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Date displaying differently after publication
Hello
I have built a visual that uses a slicer. I want the date to be dd mmm yyyy as below, which it is in desktop when I have built the report.
For an unknown reason the slicer displays with the day in PBI browser, which is not desirable as it means the user can't actually see the date they are selecting.
Does anyone know why this is happening and how I can fix so that it displays the same as in the desktop?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is a known behavior in Power BI Service: date slicers (especially dropdown ones) render differently than in Power BI Desktop. Specifically:
- In Power BI Desktop, the date format honors your model format or your system locale (dd mmm yyyy like 26 Mar 2025).
- In Power BI Service, dropdown slicers sometimes override that and display a long date format, like Wednesday, March 26, 2025, especially if the column is a DateTime or uses system locale defaults.
You need to force the desired format (dd mmm yyyy) across both Desktop and Service:
In Power BI Desktop, go to PQ editor, select your date column (Alt Fuel Bill date) and add a new column:
Alt Fuel Bill date (Formatted) = Date.ToText([Alt Fuel Bill date], "dd MMM yyyy")
Then use the new column in your slicer instead of the original date.
If you want to use DAX, you can create a new calculated column:
Formatted Date = FORMAT('YourTable'[Alt Fuel Bill date], "dd MMM yyyy")
Proud to be a Power BI Super User !
Microsoft Community : https://docs.microsoft.com/en-us/users/AmiraBedhiafi
Linkedin : https://www.linkedin.com/in/amira-bedhiafi/
StackOverflow : https://stackoverflow.com/users/9517769/amira-bedhiafi
C-Sharp Corner : https://www.c-sharpcorner.com/members/amira-bedhiafi
Power BI Community :https://community.powerbi.com/t5/user/viewprofilepage/user-id/332696

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
07-07-2024 11:26 AM | |||
10-09-2024 02:45 AM | |||
08-28-2024 04:24 AM | |||
06-04-2024 09:06 AM | |||
03-11-2024 03:44 AM |
User | Count |
---|---|
5 | |
2 | |
2 | |
2 | |
2 |