Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi all,
I am trying to create a visual which counts the number of rows that are displayed on the matrix shown below.
Please note I have the measure in the matrix filters to only show me rows that have different values in each date column (hopefully clearly shown)
Does anyone know how I can count the number of rows showing?
Pbix file: https://we.tl/t-vd5jYugdD6
Hi @FU
If I understand it correctly, you can create the following measure and display it in a card visual.
Count of Rows =
VAR _table = SUMMARIZE('Project Risks Query-xxx','Project Risks Query-xxx'[Risk ID],'Project Risks Query-xxx'[Attribute],"Distinct_Count", 'Distinct Measure'[DistinctCount])
RETURN
COUNTROWS(FILTER(_table,[Distinct_Count] > 1))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 21 | |
| 18 | |
| 13 |
| User | Count |
|---|---|
| 69 | |
| 57 | |
| 45 | |
| 42 | |
| 30 |