Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys,
in this example I want to count the products which have more than two rows, in combination with Brand.
Here Products C and E appear three times, so only these should be counted as 1 product. Other are counted as 0.
The sum would be 2.
Thank you for your help.
Solved! Go to Solution.
Hi, @thhmez7
You can try the following methods.
Maesure:
Count =
COUNTX (
FILTER (
SUMMARIZE ( 'Table', 'Table'[Product], "count", COUNT ( 'Table'[Product] ) ),
[count] > 2
),
[Product]
)
Is this the result you want?
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, @thhmez7
You can try the following methods.
Maesure:
Count =
COUNTX (
FILTER (
SUMMARIZE ( 'Table', 'Table'[Product], "count", COUNT ( 'Table'[Product] ) ),
[count] > 2
),
[Product]
)
Is this the result you want?
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.
Yes, it works, thank you.
Basically similar to the previous measure, just count instead of countrows.
Thank you guys
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.