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.
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.
Title | Name | Status |
xyz | user 1 | 1 |
xyz | User 2 | 2 |
xyz | user 3 | 3 |
xyz | User 4 | 4 |
xyz | user 5 | 5 |
Solved! Go to Solution.
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.
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.
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.
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.