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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
AnkitaaMishra
Super User
Super User

Slicer Select All Option not working as expected

Hi All,

 

Need help with below usecase : 

I have few slicers on Page 3 and one of the slicer "SalesOrderLineKey" which is multi-select and is in sync for Page 3 and Page 4.
The Category, Subcategory and Product slicers are used to get the associated "salesorderlinekey".

ankita_mishra_9_0-1719553382357.png

 


When I am explicitly selecting SalesOrderLineKey values from slicer and use the button "click to see results",  i see the expected result in page 4 as shown in below two snapshots : (i.e. two key selected the expected result is associated 2 records)

ankita_mishra_9_1-1719553485410.pngankita_mishra_9_2-1719553517687.png


but when I am selecting "Select All" option for SalesOrderLineKey Slicer, then the output is not coming as expected as shown in below snapshots : (i.e. only associated 3 records should appear in Page 4)

ankita_mishra_9_3-1719553587116.png

ankita_mishra_9_4-1719553607814.png


Unable to attach the sample file here.
Please let me know if you guys have any idea to fix this.

Thanks!



1 ACCEPTED SOLUTION

Thankyou @Anonymous  and @PijushRoy  for your solution.

 

@Anonymous had the correct understanding ,

Apologies for not able to explain the problem statement before but my requirement was as given below :
 

  • End User wanted to get all the associated TEST IDs where a certain product has been involved by using the slicers 
  • After above step, once we get the list of TEST IDs in the slicer, I should be able to see the TEST RESULTS in child page but the graph should contain all the products involved in the TEST ID

Example :
If I select Region = Asia ,
  && Product Name = PrdouctAsia then
I get all the associated TEST IDs where " Product Asia " is involved

Now If I select TEST ID = 101 and go to the child page, the expected output (for test ID - 101, there were total 2 products involved which should come) as given in the below snapshots :
 

ankita_mishra_9_0-1720431623130.png

ankita_mishra_9_1-1720431636924.png

Now for the above scenario, even if you click on SELECT ALL from TEST ID slicer, you will be receiving the output as shown below :

ankita_mishra_9_2-1720431656721.pngankita_mishra_9_3-1720431664568.png

The solution has been achieved by implementing below steps :
 

  • Creating new summarized table where I had all the combination present 
  • creating many to many relationship between FACT Table and Summarized Table based on TEST ID column 
  • Using the columns in the slicers from summarized table
  • Synchronizing all the slicers from parent page to child page and hide it from selection pane
  • the table visual in child page was coming from FACT Table

 

both the tables looks like below (unable to attach the PBIX files here) : 

FACT TABLE : 

ankita_mishra_9_4-1720432023194.png

SUMMARIZED TABLE : 

ankita_mishra_9_5-1720432070825.png

 



Thanks,
Ankita

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi,@AnkitaaMishra I am glad to help you.
Hello,@PijushRoy.Thanks for your concern about this issue.

Your answer is excellent!
And I would like to share some additional solutions below.

Has your problem been solved? If not, you can refer to my test below.
Hello, according to my tests, you need to enable slicer synchronization for all four slicers if you want to get the expected results.
According to your understanding, after the four slicers have been affected by the other three slicers, there are only three options left (in fact, the total number of options of the fourth slicer SalesOrderLineKey is more than the three options after filtering), at this time, if you select selectall, it should only filter out the rows of data of the corresponding three options on the fourth page. SalesOrderLineKey enabled cross-page synchronization, so in the actual filtering situation, only SalesOrderLineKey played the final filtering results, and at this time the option is selectedall, so you see the result is to display all the data!

The following is the test I carried out:

vjtianmsft_0-1720425416055.png

vjtianmsft_1-1720425423308.png

 

 

vjtianmsft_2-1720425431091.png

vjtianmsft_3-1720425441731.png

vjtianmsft_4-1720425451552.png

I only set up the animal column to have the slicer synchronization function, the other two fields of the slicer is not turned on
At this point, the filter conditions should satisfy the three common filter conditions
The selection for animal is select all.
But the actual result is as follows: all the data is displayed incorrectly (in fact, the current filter condition only exists "animal"="select all") and the other two slicers do not play a real filtering role.

vjtianmsft_5-1720425474805.png

The suggestion @PijushRoy  has been tested and is correct, you need to turn on the synchronized slicer function for all four fields of your page3 slicer and apply it to page 4 so that the expected results are displayed correctly.

vjtianmsft_6-1720425530848.png

Here are some other issues that have been resolved and we hope you find them helpful.
url:
Solved: Re: How to make my selection in 1 slicer effect al... - Microsoft Fabric Community
Slicers in Power BI - Power BI | Microsoft Learn

If this post helps, then please accpet   @PijushRoy's suggestion  as the solution to help the other members find it more quickly.

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.

Best Regards,

Carson Jian

Thankyou @Anonymous  and @PijushRoy  for your solution.

 

@Anonymous had the correct understanding ,

Apologies for not able to explain the problem statement before but my requirement was as given below :
 

  • End User wanted to get all the associated TEST IDs where a certain product has been involved by using the slicers 
  • After above step, once we get the list of TEST IDs in the slicer, I should be able to see the TEST RESULTS in child page but the graph should contain all the products involved in the TEST ID

Example :
If I select Region = Asia ,
  && Product Name = PrdouctAsia then
I get all the associated TEST IDs where " Product Asia " is involved

Now If I select TEST ID = 101 and go to the child page, the expected output (for test ID - 101, there were total 2 products involved which should come) as given in the below snapshots :
 

ankita_mishra_9_0-1720431623130.png

ankita_mishra_9_1-1720431636924.png

Now for the above scenario, even if you click on SELECT ALL from TEST ID slicer, you will be receiving the output as shown below :

ankita_mishra_9_2-1720431656721.pngankita_mishra_9_3-1720431664568.png

The solution has been achieved by implementing below steps :
 

  • Creating new summarized table where I had all the combination present 
  • creating many to many relationship between FACT Table and Summarized Table based on TEST ID column 
  • Using the columns in the slicers from summarized table
  • Synchronizing all the slicers from parent page to child page and hide it from selection pane
  • the table visual in child page was coming from FACT Table

 

both the tables looks like below (unable to attach the PBIX files here) : 

FACT TABLE : 

ankita_mishra_9_4-1720432023194.png

SUMMARIZED TABLE : 

ankita_mishra_9_5-1720432070825.png

 



Thanks,
Ankita

PijushRoy
Super User
Super User

Hi @AnkitaaMishra 

You have only SalesOrderLineKey sync in Page 3 and Page 4
In Page 3, only 3 LineKey are showing after applying the Category, Sub Category, and Product filter 
These Category, Sub Category, and Product these filters are not sync in Page 4 and all SalesOrderLineKey are showing in visual

You should have Category, Sub Category, Product & SalesOrderLineKey sync between Page 3 & Page 4

You can update sample PBIX file in Google Drive/Dropbox/OneDrive and share the link


 


Let me know if that works for you


If your requirement is solved, please make THIS ANSWER a SOLUTION ✔️ and help other users find the solution quickly. Please hit the LIKE 👍 button if this comment helps you.

Thanks
Pijush
Linkedin




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors