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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors