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
MasterSonic
Helper IV
Helper IV

Group values on pie chart

Hi guys,

 

I have basic pie chart showing status - 'Sold', 'Leased', 'In Process', 'Unknown' with corresponding %.

 

I would like to see that pie chart as

'Sold', 'Leased' and 'Other':

( where 'Other' = combined value of 'In Process' and 'Unknown')

 

Is it possible please ?

 

 

 

1 ACCEPTED SOLUTION

Try to add a new column with the code below:
Status2 =
IF (
    [Status]="In Process" || [Status] = "Unknown", 
    "Others",
    [Status]
)
 
it worked like this:
FreemanZ_1-1668959068500.png

 

Then plot the pie chart with the new column.

View solution in original post

6 REPLIES 6
FreemanZ
Super User
Super User

you would need a new measure.

Other := [In Process] + [Unknown]

Actually I just read about option New Group, once you right click on column. Seems like it will work for me.

 

But could you elaborate this dax formula please? It could also be useful 

Are 'Sold', 'Leased', 'In Process', 'Unknown' the values in one of your column? It would be good if you could provide a sample data, with table name and column names. 

Yes column name is  Status

with values I mentioned.

Try to add a new column with the code below:
Status2 =
IF (
    [Status]="In Process" || [Status] = "Unknown", 
    "Others",
    [Status]
)
 
it worked like this:
FreemanZ_1-1668959068500.png

 

Then plot the pie chart with the new column.

Thanks that works good.

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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.