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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All!
I have a column named Status with the values: Completed, Overdue, and Comining Due.
I want to create a % Completed by doing #Completed/ (#Completed + #Overdue + #Coming Due)
How do I type in this equation?
Solved! Go to Solution.
You could probably create this measure:
PercentComplete = Calculate(Count(yourTableName[Status]),yourTableName[Status]="Completed")/Count(yourTableName[Status])
You could probably create this measure:
PercentComplete = Calculate(Count(yourTableName[Status]),yourTableName[Status]="Completed")/Count(yourTableName[Status])
Wonderful!! Thank you!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |