This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hello,
I created a table that is updated with results based on a filter. Is there a way to create a tile that will summarize one of the columns based on written criteria(<100%=Fail, >100%=pass) into a % passing of the total? The number of rows(denominator) will change depending on my filters.
Thank you!
Solved! Go to Solution.
Hi , @New2PBI20
Try measures as below:
Rows1 =
VAR a =
COUNTROWS (
FILTER ( 'Table', 'Table'[User Adoption] > 0 && 'Table'[User Adoption] > 1 )
)
RETURN
IF ( ISBLANK ( a ), 0, a )Total rows = COUNTROWS('Table') User meet requirement = [Rows1]/[Total rows] Here is a sample pbix.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@New2PBI20 - Difficult to answer with the information provided. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
Thanks for the response and link Greg. First time submitting a question and should have clarified more. I mocked up some quick data to show my quesiton and hopefully it is enought to get an idea. I would like to be able to summerize the user adoption column(no matter what team is selected) and give a total compliance score(I would like to create a tile similar to the blue box below). What is important is that I want to show it at the user level versus the total at the bottom of the chart. Each table will be dynamic on the total number of rows that render.
thanks again and please let me know if more detail is needed.
Hi , @New2PBI20
Try measures as below:
Rows1 =
VAR a =
COUNTROWS (
FILTER ( 'Table', 'Table'[User Adoption] > 0 && 'Table'[User Adoption] > 1 )
)
RETURN
IF ( ISBLANK ( a ), 0, a )Total rows = COUNTROWS('Table') User meet requirement = [Rows1]/[Total rows] Here is a sample pbix.
Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 9 | |
| 8 | |
| 8 |
| User | Count |
|---|---|
| 49 | |
| 27 | |
| 24 | |
| 20 | |
| 20 |