Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
My powerbi desktop is not working anymore. (New or existing reports).
I'm using the latest version (Version: 2.142.928.0 64-bit (April 2025)) on a Windows 11 (Emulated using Parallels Desktop) using a Mac pro M1, and MacOS 15.4.1 (24E263) as host OS.
All date slices are breking the visuals every time I'm using "greater than" option (It was working fine a few weeks ago).
Scenario working
Less than:
Scenario failing
GREATHER THAN
Does anyone have a clue?
Solved! Go to Solution.
Hi @Selia_Developer ,
Thank you for reaching out to Microsoft Fabric Community.
Instead of using the > operator directly, try using NOT and < to invert the condition. Here's how to rewrite your failing query:
DEFINE VAR __DS0FilterTable =
FILTER(
KEEPFILTERS(VALUES('financials'[Date])),
NOT('financials'[Date] < DATE(2014, 12, 2))
)
EVALUATE
SUMMARIZECOLUMNS(
__DS0FilterTable,
"SumProfit", IGNORE(CALCULATE(SUM('financials'[Profit])))
)
Also try checking below:
1.Try changing your regional settings in Power BI Desktop (File > Options and settings > Options > Regional Settings).
2.Ensure Parallels and Windows are fully updated.
3.Consider testing on a native Windows machine to confirm if it’s an emulation issue.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Hi @Selia_Developer ,
I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, please accept it as a solution and give it a 'Kudos' so other community members with similar problems can find a solution faster.
Thank you.
Hi @Selia_Developer ,
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.
Thank you.
Hi @Selia_Developer ,
May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.
Thank you.
Hi @Selia_Developer ,
Thank you for reaching out to Microsoft Fabric Community.
Instead of using the > operator directly, try using NOT and < to invert the condition. Here's how to rewrite your failing query:
DEFINE VAR __DS0FilterTable =
FILTER(
KEEPFILTERS(VALUES('financials'[Date])),
NOT('financials'[Date] < DATE(2014, 12, 2))
)
EVALUATE
SUMMARIZECOLUMNS(
__DS0FilterTable,
"SumProfit", IGNORE(CALCULATE(SUM('financials'[Profit])))
)
Also try checking below:
1.Try changing your regional settings in Power BI Desktop (File > Options and settings > Options > Regional Settings).
2.Ensure Parallels and Windows are fully updated.
3.Consider testing on a native Windows machine to confirm if it’s an emulation issue.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!