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
schoden
Post Partisan
Post Partisan

Products purchased by Same Customer

Hi Community, 

 

I tried to group customers based on purchasing same TYPE of product or Not.

If customer A buys fruit and machine , it is Mixed  otherwise Non- mixed.

 

Result.JPG

I tried to find previous row value, apply condition of mixed and non- mixed but couldnt achieve what I needed.

Any help will be appreciated.

 

For the test file: 

https://netlinkgroup-my.sharepoint.com/:u:/g/personal/schoden_netlinkgroup_com_au/EUA7Tf_fbXBNpx54Yx...

2 ACCEPTED SOLUTIONS
PhilipTreacy
Super User
Super User

Hi @schoden 

 

Download PBIX with solution

 

This measure does the trick

 

 

Measure = 

VAR _DistinctType = CALCULATE(DISTINCTCOUNT('Table'[Type]), FILTER(ALL('Table'), 'Table'[Customer ] = SELECTEDVALUE('Table'[Customer ])))

RETURN 

IF (_DistinctType > 1, "Mixed", "Not Mixed")

 

 

mixed.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


View solution in original post

VahidDM
Super User
Super User

Hi @schoden 

 

Use this code to add a new table:

New Table = SUMMARIZE('Table','Table'[Customer ],"Check",if(CALCULATE(DISTINCTCOUNT('Table'[Type]),ALLEXCEPT('Table','Table'[Customer ]))>1,"Mixed","Not Mixed"))
                  

 

Output:

 

VahidDM_0-1636698086311.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

4 REPLIES 4
VahidDM
Super User
Super User

Hi @schoden 

 

Use this code to add a new table:

New Table = SUMMARIZE('Table','Table'[Customer ],"Check",if(CALCULATE(DISTINCTCOUNT('Table'[Type]),ALLEXCEPT('Table','Table'[Customer ]))>1,"Mixed","Not Mixed"))
                  

 

Output:

 

VahidDM_0-1636698086311.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Thanks for saving my day 😄

PhilipTreacy
Super User
Super User

Hi @schoden 

 

Download PBIX with solution

 

This measure does the trick

 

 

Measure = 

VAR _DistinctType = CALCULATE(DISTINCTCOUNT('Table'[Type]), FILTER(ALL('Table'), 'Table'[Customer ] = SELECTEDVALUE('Table'[Customer ])))

RETURN 

IF (_DistinctType > 1, "Mixed", "Not Mixed")

 

 

mixed.png

 

Regards

 

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Thanks for sharing the knowledge 😄 

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