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
racheljeska
Frequent Visitor

% Completion

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

 

racheljeska_0-1719321277414.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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!

lbendlin
Super User
Super User

 

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.

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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors