Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
i have two measure that once return a decimal number for each customer,
Create a New Measure for Count: First, you need to create a new measure that counts the occurrences of "pl", "GO", "SI", and "BR". You can use the COUNTROWS function along with FILTER to count rows based on your _RANK measure.
Here's how you can do it:
CountMeasure =
VAR SelectedRanks =
FILTER ( ALLSELECTED ( 'Dimcustomer' ), [YourMeasure] <> BLANK () )
RETURN
COUNTROWS ( SelectedRanks )
Replace [YourMeasure] with your actual measure that generates "pl", "GO", "SI", and "BR".
Create the Pie Chart: Now, you can create a pie chart using the newly created measure.
Format the Chart: You can format the chart as per your preference, such as adding data labels to show the count values, adjusting colors, etc., using the visualization tools available in your reporting tool or Power BI.
With these steps, you should be able to create a pie chart that displays the count of "pl", "GO", "SI", and "BR" categories based on your DAX measures. Make sure to adjust the measure names and column names according to your actual data model.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.