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
ben_E_556
Frequent Visitor

Pie chart with Count of X as the legend

Hello,

 

I have a map visual that shows the count of a column ("Goal") by Utility. I have a filter for Goal so that only one Goal is counted. For example (using sample data below), if I've selected Minimum in my Goal filter, the count will be A = 3, B = 3, C = 2. I also have filters for Capability, so if I filter to Cyber and Metering, the Minimum counts will be A = 1, B = 1, C = 2. 

 

I want to make a Pie Chart that summarizes the share of utilities with each count based on my Goal and Capability selections. In my first example the pie chart would show that 66% have a count of 3 and 33% have a count of 2. In the second example it would show that 66% have a count of 1 and 33% have a count of 2. The problem I'm running into is I'm not able to use Count of Goal as the legend variable for the pie chart. Using Count of Goal as the legend and Count of Utility as the values would achieve what I'm going for.

 

I tried make a summary table based on my initial table that calculates count of goal and used count of goal from the summary table as the legend variable. Then the pie chart works fine if no capabilities are filtered out, but it doesn't change depending on the capabilities filtered. 

 

UtilityCapabilityGoal
AOptimizationMinimum
ATelecomMinimum
ACyberMinimum
AMeteringGoal
BOptimizationMinimum
BTelecomMinimum
BCyberGoal
BMeteringMinimum
COptimizationGoal
CTelecomGoal
CCyberMinimum
CMeteringMinimum
Goal Summary = SUMMARIZE('Utility Goals', ''Utility Goals'[Utility], ''Utility Goals'[Goal], "Count of Goal", COUNTROWS(''Utility Goals'))
2 REPLIES 2
v-rongtiep-msft
Community Support
Community Support

Hi @ben_E_556 ,

Please have a try.

Create a measure.

Legend = 
VAR _selectedLevel = SELECTEDVALUE ( Legend[Level] )
RETURN
    SWITCH (
        _selectedLevel,
        1, SELECTEDVALUE ( Fact[Region] ),
        2, SELECTEDVALUE ( Fact[State] ),
        3, SELECTEDVALUE ( Fact[County] )
    )

 

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

 

 

 

Hello. This doesn't make sense in the context of the sample data I provided. I don't understand how this would be applied to my scenario and data.

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.