Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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] )
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
19 | |
12 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
15 | |
12 | |
11 | |
9 |