The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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] ) )