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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi. I need some help trying to count how many values are in the table filtering with multiple criterias. Here as short view of the table that I got.
Basically i need to get the numbers in the column "Products per shift" in red. So I need to count how many Products where in one day and in exact shift. Maybe some advice from You guys?
Solved! Go to Solution.
Hi @Anonymous
Try following
= CALCULATE ( DISTINCTCOUNT ( TableName[Products] ), ALLEXCEPT ( TableName, TableName[Date], TableName[Shift] ) )
Hi @Anonymous
Try following
= CALCULATE ( DISTINCTCOUNT ( TableName[Products] ), ALLEXCEPT ( TableName, TableName[Date], TableName[Shift] ) )