Forum Discussion
Mercovito
2 years agoFrequent Visitor
Calculated Table with custom filtering
Hello Masters I am trying to filter my table with DAX and create a new table. I want to exclude companies from the main table those all factories are Inactive. Below picture; "Company C" should be ...
- 2 years ago
hi Mercovito ,
Not sure if i fully get you, try to create a calculated table like:
Table = CALCULATETABLE( sheet1, FILTER( VALUES(sheet1[Company]), "Active" IN CALCULATETABLE(VALUES(sheet1[Factory Active - Inactive])) ) )it worked like: