- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
JSON Label for Slicer Selection Control Setting 'Multi-select with CTRL"
Short version: What is the JSON label for the Slicer Selection Control Setting "Multi-select with CTRL"?
I found this code which has almost everything I need but since multi-select with ctrl is a newer feature, it is not there.
Any leads on how to define this default in a JSON template would be greatly appreciated!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"slicer": {
"*": {
"selection": [{
"singleSelect": false,
"multiSelect": false,
"selectAllCheckboxEnabled": true
}]
}
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"slicer": {
"*": {
"selection": [{
"singleSelect": false,
"multiSelect": false,
"selectAllCheckboxEnabled": true
}]
}
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @TroyV ,
I tried to use the multiSelect but I did not change the toggle for Multi-Select with with Ctrl on.
Did anyone else have this problem?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I had this issue as well. "multiselect": true did not work for me. Through some experimenting, I figured out that the below code is instead the correct solution.
"strictSingleSelect": false
This also applies to the new Button slicer (a.k.a. the advancedSlicerVisual in JSON).
"selection": [{
"singleSelect": true,
"strictSingleSelect": false,
"selectAllCheckboxEnabled": false
}]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Interesting @Anonymous as long as you have it set to true I would think it would work? Maybe make sure that the Single Select option is set to false.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Here is the code I am using.
{
"name": "Custom Theme",
"dataColors": [
"#09264E",
"#004AB5",
"#FFA300",
"#f2ebdb",
"#D64550",
"#197278",
"#1AAB40",
"#3BB44A",
"#F2C811",
"#D63817"
],
"visualStyles": {
"slicer": {
"*": {
"selection": [{
"singleSelect": false,
"multiSelect" : true,
"selectAllCheckboxEnabled": false
}],
"header": [{
"show": true
}],
"title": [{
"show": true,
"fontColor": { "solid": { "color": "#333333" } },
"background": { "transparency": { "color": "" } },
"alignment": "left",
"fontSize": 10,
"fontFamily": "Segoe UI Semibold"
}],
"items": [{
"fontColor": { "solid": { "color": "#605E5C"}},
"background": { "solid": { "color": "#FFFFFF"}},
"outline": "None",
"textSize": 9,
"fontFamily": "Segoe UI"
}],
"visualHeader": [{
"show": false
}]
}
}
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sorry if I'm misunderstanding what you are trying to do, but aren't the slicer selection settings in your JSON already the default?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes they are but if I want to change "selectAllCheckboxEnabled" to true and have "mutiSelect" set to true, only "selectAllCheckboxEnabled" will change.
"selection": [{
"singleSelect": false,
"multiSelect" : true,
"selectAllCheckboxEnabled": true
}],
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Success! Appreciate the help. Should've known "with CTRL" wouldn't be included in the JSON name.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
"multiselect": true did not work for me. Through some experimenting, I figured out that the below code is instead the correct solution.
"strictSingleSelect": false
This also applies to the new Button slicer (a.k.a. the advancedSlicerVisual in JSON).
"selection": [{
"singleSelect": true,
"strictSingleSelect": false,
"selectAllCheckboxEnabled": false
}]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @SamCarlson ,
Here is a good place to report issues.
https://community.powerbi.com/t5/Issues/idb-p/Issues
Nathaniel
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
05-11-2024 12:02 AM | |||
07-25-2024 05:45 AM | |||
Anonymous
| 07-14-2024 05:04 PM | ||
08-30-2024 04:34 AM | |||
04-30-2023 09:28 PM |
User | Count |
---|---|
93 | |
75 | |
66 | |
51 | |
36 |
User | Count |
---|---|
112 | |
93 | |
80 | |
62 | |
39 |