Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi!
I have table with
Product and Value fields
I need to count nr of products which have more then 9 occurences of Values.
I tried this measure, but I guess its different contex.
Solved! Go to Solution.
hi @DagmaraG
try like:
Hi, @DagmaraG
You can try the following methods.
Measure:
Count1 = COUNT('Table'[Product])
Count2 = CALCULATE(DISTINCTCOUNT('Table'[Product]),FILTER(ALL('Table'),[Count1]>=9))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @DagmaraG
You can try the following methods.
Measure:
Count1 = COUNT('Table'[Product])
Count2 = CALCULATE(DISTINCTCOUNT('Table'[Product]),FILTER(ALL('Table'),[Count1]>=9))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @DagmaraG
try like:
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
16 | |
14 | |
11 | |
9 |