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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
jsanz1
Regular Visitor

How to combine some status field from SharePoint to be used in a pie chart

Hello,

i have a question regarding combining some status updates into one. My dashboard is pulling up information from sharepoint and the status updates are being populated from a choice field. my question is, how to combine status 1 and 3 into a pie chart and keep all of the other ones as they are.   I have 15 status updates and 2 of them need to be combined, and leave the other 13 alone to show in a pie chart. Your help is appreciated.  

 

TitleNameStatus
xyzuser 11
xyzUser 22
xyzuser 33
xyzUser 44
xyzuser 55
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jsanz1 ,

 

I suggest you to create a calculated column by dax.

New Status = 
IF('Table'[Status] in {"1","3"},"New Status",'Table'[Status])

Result is as below.

RicoZhou_0-1661758054417.png

 

Best Regards,
Rico Zhou

 

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

1 REPLY 1
Anonymous
Not applicable

Hi @jsanz1 ,

 

I suggest you to create a calculated column by dax.

New Status = 
IF('Table'[Status] in {"1","3"},"New Status",'Table'[Status])

Result is as below.

RicoZhou_0-1661758054417.png

 

Best Regards,
Rico Zhou

 

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

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Solution Authors