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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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