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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.