Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Selia_Developer
New Member

Date filter greater than breaking visuals

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:

 

DEFINE VAR __DS0FilterTable =
    FILTER(
        KEEPFILTERS(VALUES('financials'[Date])),
        'financials'[Date] < DATE(2014, 12, 2)
    )

EVALUATE
    SUMMARIZECOLUMNS(
        __DS0FilterTable,
        "SumProfit", IGNORE(CALCULATE(SUM('financials'[Profit])))
    )
 
Selia_Developer_0-1745378727133.png

 

Scenario failing

GREATHER THAN

 

DEFINE VAR __DS0FilterTable =
    FILTER(
        KEEPFILTERS(VALUES('financials'[Date])),
        'financials'[Date] > DATE(2014, 12, 2)
    )

EVALUATE
    SUMMARIZECOLUMNS(
        __DS0FilterTable,
        "SumProfit", IGNORE(CALCULATE(SUM('financials'[Profit])))
    )
 
Selia_Developer_1-1745378768954.png

 

 

 

Does anyone have a clue?

 

1 ACCEPTED SOLUTION
v-venuppu
Community Support
Community Support

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! 

 Thank you.

 

View solution in original post

4 REPLIES 4
v-venuppu
Community Support
Community Support

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.

v-venuppu
Community Support
Community Support

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.

v-venuppu
Community Support
Community Support

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.

v-venuppu
Community Support
Community Support

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! 

 Thank you.

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors