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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
New2PBI20
New Member

Summarizing Dynamic Values

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!

1 ACCEPTED 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.
 

 

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@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.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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.

 

Compliance Score.JPG

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.
 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors