Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
emmet
Frequent 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 values. Is it possible to set up the following visual interactions? 1. Selecting the Yes or No portion of the donut chart filters the table to show only the details of the corresponding Yes or No records. AND 2. With neither Yes nor No portions of the donut chart selected, show default Maybe values. Note that at any given time, I only want to show either Yes, No, or Maybe values, not all of them.
3 REPLIES 3
v-jiascu-msft
Employee
Employee

Hi @emmet,

 

Could you please mark the proper answers as solutions?

 

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Employee
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. 

Default-Views-with-Visual-Interactions

 

Best Regards,
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
MFelix
Super User
Super User

Hi @emmet,

 

The interactions between the visuals ae not linked to any conditional interaction so you cannot set it accordingly to the selection.

 

One way to achieve this would be to have 2 charts with different levels of intractions and using bookmarks show one or the other, just thinking outside of the box.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.