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,
I'm somewhat new with DAX and am having an issue with creating a measure (it is probably easy but it is eluding me).
I'm creating a measure that will count the product codes in a column but I want it counted only for 5 of the many values.
So, for example, I've tried:
Product Count = Calculate(CountA (Product[type] ), Product[type]=10, Product[type]=12, Product[type]=14 ......
This works for the first product type but when I add the additional filters (12,14, etc) the result is blank. I'm assuming this is acting as an AND or it is looking for diffternt Columns to filter on. At any rate, what I'm doing is obviously wrong. I've tried other variations but I'm not finding a solution.
Any help would be appreciated!
Solved! Go to Solution.
Hi.
Use || (OR)
Product Count = Calculate(CountA (Product[type] ), Filter(Product[Type],Product[type]=10 || Product[type]=12 || Product[type]=14 ))
Hi.
Use || (OR)
Product Count = Calculate(CountA (Product[type] ), Filter(Product[Type],Product[type]=10 || Product[type]=12 || Product[type]=14 ))
Worked! Thank you!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 76 | |
| 52 | |
| 51 | |
| 46 |