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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi - me again. Source data is employee expense submissions in a SQL table via Direct Query. I want to count the number of expense reports by employee for a given date range (slicer). I've tried:
= DISTINCTCOUNT (Expenses[ReportNumber] )
= COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER(Expenses,Expenses[ReportNumber]<>0),"Reports",Expenses[ReportNumber])))
I know this has to be possible -- what am I doing wrong??
Im sorry. Instead of primairy key i meant your name column. But im afraid this operation over this column has performance issues
I don't want to countrows of the name column though because one name may have 500 unique expense reports. I want to identify the number of expense reports per person (not number of expense submissions).
So then do COUNTROWS(ALL(Expenses[ReportNumber]))
That doesn't work, but I figured it out anyway. Thanks!
usually you publish how you solved it
COUNTROWS(ALL('Table'[Primairy key])) is working fine for me
This displayed the same value for every employee which is not correct, but it did return a result which is an improvement from my previous attempts!
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 26 | |
| 23 | |
| 19 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 46 | |
| 44 | |
| 43 | |
| 36 | |
| 31 |