Forum Discussion
natsibley
6 years agoNew Member
Measures and Slicers
I'm developing an economics report in Power BI. It indicates whether individual items (rows in a table) are having a profit or loss. I want the user to be able to select to show items showing a pro...
Anonymous
6 years agoNot applicable
natsibley
There is a workaround if you want to make the category as a slicer, while main the measures to be dynamic.
1. create a table
2. create a new measure
Measure = IF(NOT(ISFILTERED('Table (2)'[Slicer])),[Category measure],IF([Category measure]=SELECTEDVALUE('Table (2)'[Slicer]),[Category measure]))
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- natsibley6 years agoNew Member
Thank you, that gets me the rest of the way there.
Is there a way to mark the combination of the two responses as the Solution?