cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
vikaal
Frequent Visitor

Compare one customer to multiple other (user selected) customers

I need to output a table like below where "Single User Chosen Customer" is filtered with a single selection slicer and "Other User Chosen Customers" is filtered with multi-select slicer. Both are filtered by the user. The table needs to show Top N (10 in this example) categories sorted by SC Sales. I need the Sales column to output the sales for the single select customer for the same categories.

vikaal_5-1674472846294.png

 

I managed to do this before by creating a separate data table for the multi customer column, but I had to hard code in the customers for that like below and I need the report to filter for customers chosen by the user without having to manually change the data table. 

 

Hardcoded table:

vikaal_4-1674472836709.png

Measure with hardcoded table: 

OtherCustomerSales = 

VAR AllCatsTotal = CALCULATE(SUMX(ALL('Data'[Cat]), CALCULATE(SUM('Data'[Sales]))),'Customer'[Selected]=1)

RETURN

CALCULATE(DIVIDE(SUM('Data'[Sales]),AllCatsTotal),'Customer'[Selected]=1)

 

I've made a separate data table using distinct values from my category lookup table which works if I need to output only the selected customers but since I need both both the single select slicer and the multiselect slicer to interact with the same table this isn't working.

 

I've also played around with the idea of outputting two tables (one for each slicer) and partially hiding one behind the other, but this won't work let me sort the categories in the same order for both tables. 

 

 

Thanks, 

vikaal

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@vikaal , You need independent Slicer/s for that

 

refer

Compare Categorical Data Using Slicers - Compare two Brands: https://youtu.be/exN4nTewgbc



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@vikaal , You need independent Slicer/s for that

 

refer

Compare Categorical Data Using Slicers - Compare two Brands: https://youtu.be/exN4nTewgbc



!! Microsoft Fabric !!
Microsoft Power BI Learning Resources, 2023 !!
Learn Power BI - Full Course with Dec-2022, with Window, Index, Offset, 100+ Topics !!
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !! Proud to be a Super User! !!

This is perfect, thank you!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors