Forum Discussion
Anonymous
5 years agoNot applicable
Pie Chart Development in Power BI
Hi, I have the below table with me and expecting a pie chart with legends and values as given below in another table. I have Unique Sales ID with Order Qty and other fields. NET...
- 5 years ago
Hi Anonymous ,
Similar to the previous formula.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
5 years agoAnonymous , You can create qty column like
new column
Qty =
Switch( True(),
[Status] = "completed" , [Completed Qty],
[Status] = "In Progess" && isblank([Defect Reason]) , [In Progress Qty],
[Defect Qty]
)
Same way you can add Price column
Anonymous
5 years agoNot applicable
You have given the formula to get Qty, how are we going to handle the legends which is two columns ?