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
andymcgurty
Frequent Visitor

how to apply multi dimension member filter dynamically using IN operator

I'm trying to dynamically apply a filter statement in DAX using the IN operator. By passing in a string of members to filter on. 

 

In my scenario the fact table and DIM table do not have a relationship. After applying a context filter on DIM_VIEW[View] I want the selected members to be used to filter the fact table. Without relating the tables is this possible in DAX?

 

The DAX code below works when I filter one member however, it doesn't like multiple selections. The concatenatex() line correctly generates the member list but the IN operation does accept a dynamic input if there's more than one selection. 


   VAR onemember = "View1"
   VAR multiplemembers = """" & CONCATENATEX ( VALUES ( DIM_VIEW[View] ), [View], """" & ",""" ) & """"  

    RETURN
    
        VALUE (
           
               CALCULATE (
                    SUM ( FACT_TB, [amount] )
              
                               )


                   // one member - works
                   //,FACT_TB[View] IN {onemember} 
                   // multiple members - does not work
                   ,FACT_TB[View] IN {multiplemembers} 
                 )
                    

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @andymcgurty 

 

Try the below.

Measure = 
VAR __view = VALUES( DIM_VIEW[View] )
RETURN
    CALCULATE(
        SUM( FACT_TB[amount] ),
        FACT_TB[View] IN __view
    )

or a version with TREATAS for better performance

Measure = 
VAR __view = VALUES( DIM_VIEW[View] )
RETURN
    CALCULATE(
        SUM( FACT_TB[amount] ),
        TREATAS( __view, FACT_TB[View] ) 
    )

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

 

View solution in original post

3 REPLIES 3
Mariusz
Community Champion
Community Champion

Hi @andymcgurty 

 

Try the below.

Measure = 
VAR __view = VALUES( DIM_VIEW[View] )
RETURN
    CALCULATE(
        SUM( FACT_TB[amount] ),
        FACT_TB[View] IN __view
    )

or a version with TREATAS for better performance

Measure = 
VAR __view = VALUES( DIM_VIEW[View] )
RETURN
    CALCULATE(
        SUM( FACT_TB[amount] ),
        TREATAS( __view, FACT_TB[View] ) 
    )

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

 

Hi @Mariusz 

 

I have an issue when using this approach with time intelligence functions. It doesn't filter the correct values at the row level when the filter is selected for multiple members. It works fine if for example DIM_VIEW[View] is used as a dimension (on rows or columns) in my analysis because it can slice the values into their own buckets and know what dates are relevant for each view. While this works at the member level, the grand totals are wrong. 

 

If all the members are selected as a filter, it aggregates the values up incorrectly without taking the individual D_VIEW[View] members into context, so the same result as the grand total is displayed. 

 

I've managed to return the correct results in a DAX query however, I've been unable to translate this into a valid measure in my analysis that can apply the correct filtering. 

 

 

Thanks

 

Andy

 

 

 

 

good work @Mariusz !

 

TREATAS() is exactly what I was looking for and is working with context filters in my analysis. 

 

Thanks

 

Andy

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.

Top Solution Authors