Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone....
I have the need to create categories of frequent users in a given period.
I have the IDs (about 1MM of unique IDS) and I wanted to define for example, who entered Category A more than 10 times a week, who entered Category B 15 times and so on .
Tks so much
Solved! Go to Solution.
Hi @Anonymous ,
I created a sample table per your description as below:
Then you need a measure as below:
measure =
var a =CALCULATE(COUNT('Table'[Category]),ALLEXCEPT('Table','Table'[ID]),FILTER('Table','Table'[Category]="a"))
var b=CALCULATE(COUNT('Table'[Category]),ALLEXCEPT('Table','Table'[ID]),FILTER('Table','Table'[Category]="b"))
Return
IF(a>=10,SELECTEDVALUE('Table'[ID]),IF(b>=15,SELECTEDVALUE('Table'[ID]),BLANK()))
Finally you will see:
Here is the related .pbix file.
Hi @Anonymous ,
I created a sample table per your description as below:
Then you need a measure as below:
measure =
var a =CALCULATE(COUNT('Table'[Category]),ALLEXCEPT('Table','Table'[ID]),FILTER('Table','Table'[Category]="a"))
var b=CALCULATE(COUNT('Table'[Category]),ALLEXCEPT('Table','Table'[ID]),FILTER('Table','Table'[Category]="b"))
Return
IF(a>=10,SELECTEDVALUE('Table'[ID]),IF(b>=15,SELECTEDVALUE('Table'[ID]),BLANK()))
Finally you will see:
Here is the related .pbix file.
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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 93 | |
| 84 | |
| 33 | |
| 31 | |
| 25 |