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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
SnoekL
Helper II
Helper II

2 Step Filter on dimension approach

Hi, I'm not sure if this can be resolved using dax but I need to filter my data in a simple matrix or table visual and it feels easy but I'm struggling with it. I need to filter all orders that contain a selected product but than show all products for those orders. 

 

Simplefied example:

SnoekL_0-1705505053949.png

I want to be able to have a filter on the dimension product and the result should be the table at the end which is showing the som by product for all orders that contain the selected product. Can anyone help me with this please?

1 ACCEPTED SOLUTION
v-nuoc-msft
Community Support
Community Support

Hi @SnoekL 

 

For your question, here is the method I provided:

 

I used the data you provided

 

vnuocmsft_0-1705565616460.png

 

“FACT Orderlines”

vnuocmsft_1-1705565632861.png

 

Create a measure. Query all orders that contain the selected product.

Select_Product-Amount = 
    var select_product = 
        IF(
            ISFILTERED('ProductDim'[Name]), 
            VALUES('ProductDim'[ID]), 
            BLANK()
        )
    var select_product_amount = 
        SUMX(
            FILTER(
                'FACT Orderlines', 
                CALCULATE(
                    CONTAINS(
                        'FACT Orderlines', 
                        'FACT Orderlines'[ProductID],
                        select_product
                    ), 
                    ALLEXCEPT(
                        'FACT Orderlines', 
                        'FACT Orderlines'[OrderID] 
                        )
                )
            ), 
            'FACT Orderlines'[Amount]
        )
RETURN select_product_amount

vnuocmsft_2-1705565829270.png

 

Create a measure. Group and sum the product.

Product_amount = 
    SUMX(
        FILTER(
            ALL('FACT Orderlines'), 
            'FACT Orderlines'[ProductID] = MAX('FACT Orderlines'[ProductID])
            ),
        [Select_Product-Amount]
    )

 

Here is the result.

vnuocmsft_3-1705565970870.png

Regards,

Nono Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

View solution in original post

2 REPLIES 2
SnoekL
Helper II
Helper II

Thanks that works great 🙂

v-nuoc-msft
Community Support
Community Support

Hi @SnoekL 

 

For your question, here is the method I provided:

 

I used the data you provided

 

vnuocmsft_0-1705565616460.png

 

“FACT Orderlines”

vnuocmsft_1-1705565632861.png

 

Create a measure. Query all orders that contain the selected product.

Select_Product-Amount = 
    var select_product = 
        IF(
            ISFILTERED('ProductDim'[Name]), 
            VALUES('ProductDim'[ID]), 
            BLANK()
        )
    var select_product_amount = 
        SUMX(
            FILTER(
                'FACT Orderlines', 
                CALCULATE(
                    CONTAINS(
                        'FACT Orderlines', 
                        'FACT Orderlines'[ProductID],
                        select_product
                    ), 
                    ALLEXCEPT(
                        'FACT Orderlines', 
                        'FACT Orderlines'[OrderID] 
                        )
                )
            ), 
            'FACT Orderlines'[Amount]
        )
RETURN select_product_amount

vnuocmsft_2-1705565829270.png

 

Create a measure. Group and sum the product.

Product_amount = 
    SUMX(
        FILTER(
            ALL('FACT Orderlines'), 
            'FACT Orderlines'[ProductID] = MAX('FACT Orderlines'[ProductID])
            ),
        [Select_Product-Amount]
    )

 

Here is the result.

vnuocmsft_3-1705565970870.png

Regards,

Nono Chen

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.