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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Filtering by Multiple Measures

Hi all.

 

I have several measures in my model which look like the below:

 

UnlimitedCount =

CALCULATE(

COUNT('Contract Item'[Account ID])

,

FILTER('Contract Item','Contract Item'[Package Category]="Unlimited"

))

 

***

 

CommercialCount =

CALCULATE(

COUNT('Contract Item'[Account ID])

,

FILTER('Contract Item','Contract Item'[Package Category]="Commercial"

))

 

What I'd like to do is set both of these as a filter, such that results are shown if either of them is greater than 1. 

 

Does anyone have any ideas of how to achieve this?

 

Thanks

 

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

You may just add an additional measure.

Measure 3 =
IF ( [Measure] > 1 || [Measure 2] > 1, 1 )
Community Support Team _ Sam Zha
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

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Anonymous,

 

You may just add an additional measure.

Measure 3 =
IF ( [Measure] > 1 || [Measure 2] > 1, 1 )
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Simple and elegant, thanks @v-chuncz-msft!

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.