Forum Discussion
Anonymous
6 years agoNot applicable
Heavy users
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 ...
- 6 years ago
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.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
amitchandak
6 years agoSuper User
Anonymous
Can you share sample data and sample output.