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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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