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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
Solved! Go to Solution.
@Anonymous,
You may just add an additional measure.
Measure 3 = IF ( [Measure] > 1 || [Measure 2] > 1, 1 )
@Anonymous,
You may just add an additional measure.
Measure 3 = IF ( [Measure] > 1 || [Measure 2] > 1, 1 )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 31 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 72 | |
| 38 | |
| 28 | |
| 24 |