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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Completion Rate Visual

Hello, I am new to PowerBI and currently doing a wireframe for a project. May I know how to calculate the completion rate based from my dummy data? Thank you so much!

randomcobbler_0-1693972868248.png

 

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

At the very least, desribe your question propery.  What do you want to calculate the completion status by - Month, Employee ID, Training ID????????  Share data in a format that can be pasted in an MS Excel file.  Show the expected result very clearly.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi, I tried to paste the table last time but it got an error. I'll try again now.

Completion rate in a card format. Just the percentage of people who completed the training. Thank you so much!

Employee IDFirst NameLast NameTraining IDStart DateStatus
1000JuanDela CruzEXL-00011-JanIn Progress
1001JohnDoePYT-123413-JunCompleted
1002AllieGraterSFTY-43211-OctOverdue
1003OliveYewSFTY-432214-JunCompleted
1004TeriDactylPYT-432123-FebCompleted
1005PhilipVegaPYT-432123-FebIn Progress
1006DahliaAyalaSFTY-432214-JunOverdue

Hi,

Write these measures:

Total = distinctcount(Data[Employee ID])

Completed = calculate([Total],Data[Status]="Completed")

Completed (%) = divide([Completed],[Total])

Drag the Completed (%) measure to the card visual.

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi  @Anonymous ,

 

Do you mean the completion rate for each month?

Here are the steps you can follow:

1. Create measure.

Measure =
var _count=
COUNTX(FILTER(ALL('Table'),
YEAR('Table'[Start Dates])=YEAR(MAX('Table'[Start Dates]))&&
MONTH('Table'[Start Dates])=MONTH(MAX('Table'[Start Dates]))),[Employee])
var _countcompleted=
COUNTX(FILTER(ALL('Table'),
YEAR('Table'[Start Dates])=YEAR(MAX('Table'[Start Dates]))&&
MONTH('Table'[Start Dates])=MONTH(MAX('Table'[Start Dates]))&&'Table'[Status]="Completed"),[Employee])
var _divide=
DIVIDE(
    _countcompleted,_count)
return
IF(
_divide=BLANK(),0,_divide)

2. Result:

vyangliumsft_0-1694139367558.png

 

If that result does not meet your expectations, you can express the expected result in the form of a picture and we can help you better.

 

Best Regards,

Liu Yang

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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors