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 )
| User | Count |
|---|---|
| 54 | |
| 37 | |
| 27 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 69 | |
| 57 | |
| 38 | |
| 21 | |
| 21 |