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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
lava_
Helper I
Helper I

Why do non-highlighted pie chart values turn to 0%?

Hello,

 

I have a table visual that is being used to filter a pie chart. I noticed that whenever a value is selected in the table visual, it highlights that value in the pie chart correctly, but then the remaining non-highlighted values in the pie chart turn to 0% for some reason (screenshot below).

 

Does anyone know why this occurs? Is there a way to make it so all of the numerical values remain even when only one piece of the pie chart is highlighted? I don't want them to change to 0%. 

The measure I'm using for the pie chart values is the below. The legend in the pie chart uses the "AUM Strategy" column.

 

Date Selected_Mrkt Value Sum_Total =
                           
VAR MaxDate = CALCULATE(MAX('AUM Data'[AsOfDate]), ALL('AUM Data'))

VAR Result =
            CALCULATE(
                SUMX('AUM Data', 'AUM Data'[MarketValue]),
                    'AUM Data'[AsOfDate] = SELECTEDVALUE('AUM Data'[AsOfDate], MaxDate)
            )

RETURN
Result
             
 
 

 

lava__1-1678209532814.png

 

 

Thank you!

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @lava_ ,

 

According to your statement, I think your issue is that when you interact pie chart by table visual, data for the legends which are not selected in table visual will turn to 0%.

I can reproduce your issue in myside. I think this is by design. In my screenshot, I select the row [Strategy] = "A" in table visual. So the interaction will consider the filter and only show the value for [Strategy] = "A".

RicoZhou_0-1678347806029.png

If you want to highlight the selection and not let strategy turn 0%, I suggest you to select in pie chart, instead of filtering it by other visual.

RicoZhou_1-1678348499556.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @lava_ ,

 

According to your statement, I think your issue is that when you interact pie chart by table visual, data for the legends which are not selected in table visual will turn to 0%.

I can reproduce your issue in myside. I think this is by design. In my screenshot, I select the row [Strategy] = "A" in table visual. So the interaction will consider the filter and only show the value for [Strategy] = "A".

RicoZhou_0-1678347806029.png

If you want to highlight the selection and not let strategy turn 0%, I suggest you to select in pie chart, instead of filtering it by other visual.

RicoZhou_1-1678348499556.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors