Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi all,
I have the following tables and relationships:
I need a measure that allows me to produce the following output, that isn't affected by slicers:
I have been able to use CONCATENATEX as a calculated column (to give the output above), but I need this as a measure. When I implement as a measure, I cannot work out how to ignore the slicer filter but keep the current filter context.
For example, the diagram below demonstrates that when the resource is filtered to "Bob", the project also shows just "Bob" instead of "Fred, Bob"
Thanks in advance 🙂
Solved! Go to Solution.
You can use ALL to ignore the slicer filter context (along with any other filter context on that column).
Resources =
CALCULATE (
CONCATENATEX (
SUMMARIZE ( ResourceAllocation, Resource[ResourceName] ),
Resource[ResourceName],
", "
),
ALL ( Resource[ResourceName] )
)
You can use ALL to ignore the slicer filter context (along with any other filter context on that column).
Resources =
CALCULATE (
CONCATENATEX (
SUMMARIZE ( ResourceAllocation, Resource[ResourceName] ),
Resource[ResourceName],
", "
),
ALL ( Resource[ResourceName] )
)
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
19 | |
14 | |
10 | |
7 |