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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Dynamic Pie chart by grouping smaller groups under "Others"

I have a pie chart which shows data by client and their %. How do I group clients showing less then 2% in the chart by bringing them under one as "Other" . When I select a range from date filter it would not change or clients with more then 2% moves under "Others"

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous 

You need create a calculated column to replace category in Pie Chart .

column = IF('Table'[Value]<2,"Others",'Table'[category])

The result is as shown :

Ailsamsft_0-1629856448030.png

Then put the column field in Legend , put Value field in Values .You can see the result below .

Ailsamsft_1-1629856448034.png

I have attached my pbix file , you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

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

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous 

You need create a calculated column to replace category in Pie Chart .

column = IF('Table'[Value]<2,"Others",'Table'[category])

The result is as shown :

Ailsamsft_0-1629856448030.png

Then put the column field in Legend , put Value field in Values .You can see the result below .

Ailsamsft_1-1629856448034.png

I have attached my pbix file , you can refer to it .

 

Best Regards

Community Support Team _ Ailsa Tao

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

Anonymous
Not applicable

RrahulG_0-1629730353262.png

 

Anonymous
Not applicable

Group Smaller Slices with condition in Pie Charts
I would like to group the small slices of a pie chart with one condition, when the percentage of total is less than 2%.

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