Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
jsmith435
Frequent Visitor

Filtering a DAX table composed of measures from filter table

Hello,

I have a DAX table that is composed of measures (count) from various other tables. I am unable to filter these counts in the dax table based of a value from the referenced table. Is this possible to do in DAX?

 

DAX table: 

daxTable = {("Allow Save with Errors" , [Count Allow Save With Errors])}

 

Referenced Table: 

Screenshot 2023-03-10 135617.png

 

Measure: 

Count Allow Save With Errors = CALCULATE(
    IF(COUNTA('Series Series'[Allow Save With Errors]) = 0, 0, COUNTA('Series Series'[Allow Save With Errors])),
    FILTER('Series Series', 'Series Series'[Allow Save With Errors] <> FALSE())
)
 
The expected result should be a slicer that filters the dax table based off the published set column 
1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Measures don't belong to any table. (The "home table" construct is just that, a construct). You cannot measure or filter a measure. Maybe you are thinking of calculation groups?

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

Measures don't belong to any table. (The "home table" construct is just that, a construct). You cannot measure or filter a measure. Maybe you are thinking of calculation groups?

Yes, it appears that I am working with a Calculation Table. Which is independent and cannot be filtered, unfortunately. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.