Hello,
I have the following measure and wanted to know what I need to do to replicate the measure and adjust it to show an 'all' figure unaffected by on screen slicer visuals. (this way I can use it to show slicer selections vs an 'all' figure.)
The measure is:
Result =
VAR denominator =
CALCULATE (
SUM (Table1[sub] ),
Table1[pop] = 1
)
VAR numerator =
CALCULATE (
SUM(Table1[num] ),
Table1[empnum]<> 0
&& Table1[pop] = 1
)
RETURN
numerator/denominator
Any advice welcome.
Thanks
Solved! Go to Solution.
You may create a second metric:
Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)
Where X is a list of on-screen slicers you have in place, for example:
REMOVEFILTERS(Customers[Country],Items[Category])
You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.
You may create a second metric:
Result (All)=
CALCULATE(
[Result],
REMOVEFILTERS(X)
)
Where X is a list of on-screen slicers you have in place, for example:
REMOVEFILTERS(Customers[Country],Items[Category])
You can leave it as REMOVEFILTERS(), but it may be an overkill depending on the context, so you better specify the sliced fields.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
125 | |
75 | |
65 | |
56 | |
55 |
User | Count |
---|---|
199 | |
104 | |
88 | |
79 | |
77 |