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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Geoff1984
New Member

Measure won't filter from slicer

I made a measure that calculates Bad Reviews from a column. But when I select a value from the review score slicer, the measure won't filter accordingly. So you will see that there are 6 reviews and 7 Bad reviews. Bad reviews shouldn't exceed the reviews because it's part of the whole reviews.

 

 

Geoff1984_1-1689586477395.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Geoff1984 

You can try the following measure

 

Bad news =
CALCULATE (
    COUNTROWS ( olist_order_reviews_dataset ),
    FILTER ( olist_order_reviews_dataset, [review_acore] < 3 )
)

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Geoff1984 

You can try the following measure

 

Bad news =
CALCULATE (
    COUNTROWS ( olist_order_reviews_dataset ),
    FILTER ( olist_order_reviews_dataset, [review_acore] < 3 )
)

Best Regards!

Yolo Zhu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

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