Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Dears,
I am new in Power BI and I need to calculate percentage of "Open" status but I don't know how
your help is highly appreciated
Solved! Go to Solution.
Hi @Anonymous,
I think you can do it like this:
Create a measure:
CountOpen = CALCULATE(COUNTA(Table1[Status]);Table1[Status] = "Open")
and after that:
PercentageOpen = [Countopen] / COUNT(Table1[Status])
The last measure will give you the percentage of Open status'es, you need to format the last measure as percentage!
If you want to do the same for Closed you can do it the same way but replace "Open" by "Closed"
Let me know if this worked. 🙂
Regards,
L.Meijdam
Hi @Anonymous,
I think you can do it like this:
Create a measure:
CountOpen = CALCULATE(COUNTA(Table1[Status]);Table1[Status] = "Open")
and after that:
PercentageOpen = [Countopen] / COUNT(Table1[Status])
The last measure will give you the percentage of Open status'es, you need to format the last measure as percentage!
If you want to do the same for Closed you can do it the same way but replace "Open" by "Closed"
Let me know if this worked. 🙂
Regards,
L.Meijdam
Hi @Anonymous,
What happens when you display the first measure in a card visual ?
Best regards,
L.Meijdam
@Anonymous
This is what happens
Hi @Anonymous,
- Are you sure you named your measure "CountOpen" ? it is case sensitive
- is "CountOpen" Formatted as a whole number ?
Best Regards,
L.Meijdam
Hi @Anonymous
Thank you brother, it's working now, but I need to be in percentage format
Hi @Anonymous,
You can select your measure and after that click on the button in the picture below:
Best Regards,
L.Meijdam
Hi @Anonymous
Thank you very much for your helpful replies.
@Anonymous,
You're welcome, glad I could help 🙂
Best Regards,
L.Meijdam
actually, it's dimmed!
Hi @Anonymous
How to format it as a whole No.?
It's working and shows the No. of Open status
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.