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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mosman
Frequent Visitor

Dax Measure at least one product

I am trying to get a distinct count of my customer who purchase a specific product and show all the other product they purchased as well. I tried to put the product name in the filter, but that would not show the other products.

Customer Count = CALCULATE(DISTINCTCOUNT(CustomerKey),'Customers Products'[ProductName]'='Thigh Master'). when I show it in a table it show it like this: Customer Name Product Name
John Doe Thigh Master
but I would like to see: Customer Name Product Name
John Doe Thigh Master
John Doe Ab Roller
John Doe Ab Master

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

Hi @mosman ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Create a product name dimension table(DO NOT create any relationship with your fact table)

Products = VALUES('Table'[ProductName])

yingyinr_0-1647585314965.png

2. Create a measure as below to determine if the corresponding customer should be displayed

Flag = 
VAR _selproduct =
    ALLSELECTED ( 'Products'[ProductName] )
VAR _selcustomer =
    SELECTEDVALUE ( 'Table'[Customer Name] )
VAR _tab =
    CALCULATETABLE (
        VALUES ( 'Table'[Customer Name] ),
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[ProductName] IN _selproduct )
    )
RETURN
    IF ( _selcustomer IN _tab, 1, 0 )

3. Create a table visual and apply a filter on this visual with the condition(Flag is 1) just as below screenshot

yingyinr_1-1647585631884.png

Best Regards

Community Support Team _ Rena
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
v-yiruan-msft
Community Support
Community Support

Hi @mosman ,

I created a sample pbix file(see attachment) for you, please check whether that is what you want.

1. Create a product name dimension table(DO NOT create any relationship with your fact table)

Products = VALUES('Table'[ProductName])

yingyinr_0-1647585314965.png

2. Create a measure as below to determine if the corresponding customer should be displayed

Flag = 
VAR _selproduct =
    ALLSELECTED ( 'Products'[ProductName] )
VAR _selcustomer =
    SELECTEDVALUE ( 'Table'[Customer Name] )
VAR _tab =
    CALCULATETABLE (
        VALUES ( 'Table'[Customer Name] ),
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[ProductName] IN _selproduct )
    )
RETURN
    IF ( _selcustomer IN _tab, 1, 0 )

3. Create a table visual and apply a filter on this visual with the condition(Flag is 1) just as below screenshot

yingyinr_1-1647585631884.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
mosman
Frequent Visitor

any help?

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.