Forum Discussion
emmet
7 years agoFrequent Visitor
Default Views with Visual Interactions
Hello, I have 3 possible values in a field (Yes, No, Maybe). I have a donut chart displaying the breakdown of all Yes and No values and a table below this displaying the details of all the Maybe value...
v-jiascu-msft
7 years agoMicrosoft Employee
Hi emmet,
It's hard to achieve it directly. But we can add a dimension table and use a measure to filter the result. Please download the demo from the attachment.
1. Create a new table.
OptionTable = VALUES(Table1[Options])
2. Establish a relationship.
3. Create a measure.
Measure = IF ( ISBLANK ( SELECTEDVALUE ( 'OptionTable'[Options] ) ), IF ( MIN ( 'Table1'[Options] ) = "Maybe", "Yes", BLANK () ), IF ( MIN ( Table1[Options] ) = SELECTEDVALUE ( OptionTable[Options] ), "Yes", BLANK () ) )
3. Add it to the Visual Level Filter.
Best Regards,
Dale