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
I have a column with the status of the actions and want to calculate %action closed, %Action Open, %Action Rejected etc. Somehow, I am unable to calculate it, can anyone help me?
| Status |
| Closed |
| Closed |
| Submitted |
| Open |
| Rejected |
| Open |
Solved! Go to Solution.
Hi SamratQuality
you can use the measure below
Measure =
var countstatus = COUNT('Table'[Status])
var sumcount = CALCULATE(COUNT('Table'[Status]),ALL('Table'))
return
DIVIDE(countstatus,sumcount)
After, you select this measure and press the % buttom
If that measure helps you, accept that solution for you post.
Best Regards.
Hi, @Anonymous ;
You could create a measure as follows:
%percent = DIVIDE(CALCULATE(COUNTROWS('Table'),FILTER(ALL('Table'),[Status]=MAX([Status]))),CALCULATE(COUNT([Status]),ALL('Table')))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Percent Status : =
DIVIDE (
COUNTROWS ( Data ),
CALCULATE ( COUNTROWS ( Data ), REMOVEFILTERS ( 'Status'[Status] ) )
)
Hi SamratQuality
you can use the measure below
Measure =
var countstatus = COUNT('Table'[Status])
var sumcount = CALCULATE(COUNT('Table'[Status]),ALL('Table'))
return
DIVIDE(countstatus,sumcount)
After, you select this measure and press the % buttom
If that measure helps you, accept that solution for you post.
Best Regards.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!