Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I filtered out Coming Due in the pie chart visual
I need the equation to do # completed / (Completed + Overdue) x100 = 96.94%
The answer should match what is in the pie chart
Solved! Go to Solution.
Hi @racheljeska
Not sure if I understand your requirement correctly. If you want to display the % Completion result in a separate visual like a Card visual, you can create a measure like below, then add it to the Card visual.
% completion =
DIVIDE (
CALCULATE (
COUNT ( 'Table'[Employee ID] ),
'Table'[Completion Status] = "Completed"
),
CALCULATE (
COUNT ( 'Table'[Employee ID] ),
'Table'[Completion Status] IN { "Completed", "Overdue" }
)
)
And in the Data pane, select this measure, go to Measure tools ribbon to format it as Percentage.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Hi @racheljeska
Not sure if I understand your requirement correctly. If you want to display the % Completion result in a separate visual like a Card visual, you can create a measure like below, then add it to the Card visual.
% completion =
DIVIDE (
CALCULATE (
COUNT ( 'Table'[Employee ID] ),
'Table'[Completion Status] = "Completed"
),
CALCULATE (
COUNT ( 'Table'[Employee ID] ),
'Table'[Completion Status] IN { "Completed", "Overdue" }
)
)
And in the Data pane, select this measure, go to Measure tools ribbon to format it as Percentage.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
I filtered out Coming Due in the pie chart visual
Oooh, two mistakes for the price of one 🙂 .
A pie chart ONLY makes sense if you DON'T filter out vital parts. By definition it will ALWAYS need to show 100%.
Use a different visual.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 6 | |
| 5 |