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!
I am attempting to create a contact rate report. Ive ran into a problem when trying to count the number of total call leads.
There are over a million rows, but my measure results are getting small numbers.
This is my measure:
Total Calls = COUNT(Click_SalesForms[LeadUID])
>> Im getting "1", which I know is incorrect.
Any help?
Hi @Anonymous,
Could you try the formula below to see if it works in your scenario? ![]()
Total Calls = COUNTROWS ( ALL ( Click_SalesForms[LeadUID] ) )
Regards
Does each LeadUID have its own row in the table?
If so you can use something like
Total Calls = COUNTROWS(Click_SalesForms)
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 21 | |
| 18 | |
| 11 |
| User | Count |
|---|---|
| 56 | |
| 54 | |
| 43 | |
| 36 | |
| 34 |