Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have recently updated the Power Bi desktop: March 2025 Update (2.141.1228.0)
But upon opening any file I get the following error:
This has never happened before and causing issues updating any reports, the error also isn't very helpful 😞
Solved! Go to Solution.
I have raised a ticket:
https://community.fabric.microsoft.com/t5/Issues/Fix-the-Date-function-in-DAX/idi-p/4710619
Please vote for it if you're having this issue.
retrospectively, if you see or know of a similar issue, please reference it 😀
https://community.fabric.microsoft.com/t5/Issues/Fix-the-Date-function-in-DAX/idi-p/4710619
The issue seems to be happening on ARM processors and relates to date fields. Even though they are data fields, they are processed as text, which is causing the issue (that's my assumption).
Date fields are not converted and this raises the error:
Companies2 (L28D) =
CALCULATE(
DISTINCTCOUNT(companies[id]),
companies[created_at] >= TODAY() - 28 &&
companies[created_at] < TODAY()
)
Here the dates are explicitly converted to dates and it works OK:
Companies (L28D) =
CALCULATE(
DISTINCTCOUNT(companies[id]),
DATEVALUE(companies[created_at]) >= TODAY() - 28 &&
DATEVALUE(companies[created_at]) < TODAY()
)
Unfortunately, there is no workaround for filters and visuals. They display error anyway.
My PBIX fiel is from May version and it refuses to open in version Feb'25.
Is there a way to downgrade the file to Feb'25?
I have raised a ticket:
https://community.fabric.microsoft.com/t5/Issues/Fix-the-Date-function-in-DAX/idi-p/4710619
Please vote for it if you're having this issue.
retrospectively, if you see or know of a similar issue, please reference it 😀
https://community.fabric.microsoft.com/t5/Issues/Fix-the-Date-function-in-DAX/idi-p/4710619
Hi @karljackson
Thank you for the update. Since you have already submitted your idea, I have upvoted it as well. With increased visibility and community support, it has a better chance of being prioritized for review by the relevant product teams. Microsoft will continue to evaluate and enhance the platform to meet the stability and experience that users rightfully expect. Hope your issue gets resolved soon. When it does, please share the insights here and mark it or any other helpful answer 'Accept as Solution', which will help others with similar queries.
Thank you.
Oddly I totally forgot about this issue because i have refused to update my Power Bi Desktop since I raised this issue.
It wasn't until a colleague came and asked for my support regarding this issue today that i remembered this post ande come to check it out, figures that the issue is still persisting, i'll look into raising a support ticket, or backing up a current ticket.
I was able to narrow this down further
FILTER(
ALL(BREAKDOWN_HISTORY),
BREAKDOWN_HISTORY[Period Date] >= DATE(2024, 4, 1) &&
BREAKDOWN_HISTORY[Period Date] <= DATE(2024, 12, 31)
)
but this works
FILTER(
ALL(BREAKDOWN_HISTORY),
BREAKDOWN_HISTORY[Period Date] <= DATE(2024, 12, 31) &&
BREAKDOWN_HISTORY[Period Date] >= DATE(2024, 4, 1)
)
The issue is that BREAKDOWN_HISTORY[Period Date] >= DATE(2024, 4, 1) but the workaround is to have it after BREAKDOWN_HISTORY[Period Date] <= DATE(2024, 12, 31)
This doesn't help if you are trying to use the between slicer (as I am) but I found if I apply the "before" slicer and then apply the "after" slicer that it will work, although ugly as hell.
All of these comments are spot on with an issue I am also having. It does seem specific to date filtered-affected Measures. Would be really nice to know if Microsoft is aware of and working on a solution. I use this specific file/report monthly and have used the same report with the same measures for over a year with no issues. After this update, multiple of my measures are broken with no syntax errors and no clear error message other than the "file, line function" message.
The April 2025 update is out. I hoped the problem was fixed, but no.
Still no solution. I stick to the Frebruary 2025 version.
I just tried the May edition and issue still not fixed :(.
It seems to be if you're running an ARM chip and using any date DAX functions / filters.
Keeping to the February 2025 edition for now
Wow thanks, I was going to look into this myself soon to review if it was fixed. I think not.
Hi Karli, thanks for raising this issue. Im a PM on the Power BI team supporting desktop and our team is in discussions internally to see if we can expand our support for the ARM scenario. If you have any more comments or details you would like to provide, feel free to add that in the support ticket or in this forum and our team will review. Best regards, Grace
Same issue here!
Rolling back to the February 2025 Power BI Desktop version resolved 🚀 the issue.
This version can be found under the [Previous monthly updates to Power BI Desktop and the Power BI service] page
I also raised a ticket (#2504021420003948) with Microsoft, describing the problem. The support engineer kindly shared a page listing all previous Power BI versions. After installing the February 2025 version, the issue was resolved.
It appears to be a bug that Microsoft may need to address with a future fix.
Can I ask how you rolled back to the February version. I can not seem to locate a download file or find a way via Microsoft store to rollback.
Also, were you using a ARM processor? This problem only exists on my Surface with a Snapdragon processor.
Thanks for any assistance.
Keith
Do we know if PBI is working on this? I don't see it listed in the known issues and I would like to be notified when it's resolved.
Regrettably, I don't know. However, I have initiated a ticket with Microsoft, and the initial troubleshooting step recommended by the support engineer was to install February 2025 version. This resolution proved effective for me.
Regards,
Surya
I have the same exact problem.
The behaviour I noticed is: When I control the end date, it is absolutely fine, but the issue appears only when I control the start date.
The error I see on the visual is: Error fetching data for this visual see details. and when I click on see details I find out a non-helpful message: An unexpected error occurred (file", line, function "). date filter
This is really annoying and caused my complete work to stop!!!>
I have the exact same issue with Version: 2.141.1253.0 64-bit (March 2025)
When I filter on a specific data range I get the error. When removing the date filter from the visual, the visual is working back again.
Hi @karljackson
Thank you for reaching out to the Microsoft Community Forum.
Since the issue started occurring after updating to Power BI Desktop March 2025 Update (2.141.1228.0) and affects all files, it is likely related to a bug in the latest update, corrupt installation, or conflict with existing dependencies and compatibility issues with existing datasets or custom visuals. It would be helpful to raise a support ticket with Microsoft for better assistance on this.
You can submit a ticket through the Microsoft Power BI Support Portal:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
If my response has resolved your query, please mark it as the Accepted Solution to assist others. Additionally, a 'Kudos' would be appreciated if you found my response helpful.
Thak you.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
78 | |
76 | |
59 | |
35 | |
33 |
User | Count |
---|---|
100 | |
62 | |
56 | |
47 | |
41 |