This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I want to implement the effect on the page
There are two slicers on the page now, and the fields in these two slicers have hierarchical relationships. The slicers I use are button slicers. For example, for Level 1 slicers, if I select Type1, I will default to selecting Type_A below Level 2 slicers. However, when I switch to Type 2, I want to default to the Type_E state. The problem now is that when I select Type 2, Level 2 cannot default to Type_E.
Here is my data
| Level 1 | Level 2 |
| Type1 | Type_A |
| Type1 | Type_B |
| Type1 | Type_C |
| Type1 | Type_D |
| Type2 | Type_E |
| Type2 | Type_F |
| Type2 | Type_G |
Solved! Go to Solution.
Hi @想要多多的赚钱 ,
I have tried replicating your scnario and this behavior isn’t achievable through slicers alone, but you can implement it effectively using bookmarks.
Here’s how you can set it up:
Step 1:
Go to Edit Interactions and ensure the Level 1 button slicer is not being filtered by the Level 2 slicer (disable the interaction if needed).
Step 2:
Select Type1 in Level 1 and ensure the corresponding default (e.g., Type_A) is selected in Level 2.
Create a bookmark (e.g., Type1_Default) with the current state.
Step 3:
Select Type2 in Level 1 and set the Level 2 slicer to the desired default (e.g., Type_E).
Create another bookmark (e.g., Type2_Default).
Step 4:
Assign these bookmarks to buttons (or your existing button slicers) so that:
This approach allows you to simulate dynamic default selections for Level 2 based on Level 1.
I am unable to attach my pbix file here for this solution - not able to see any option to attach my file.
Hope above answers will help though!
Please mark this answer as accepted if it resolves your issue. Kudos are appreciated! 🙂
Hi,
As per our understanding, what you’re trying to achieve (dynamic default selection in a dependent slicer based on another slicer) is not supported out-of-the-box in Microsoft Power BI.
Why it’s not working
Power BI slicers are user-driven filters, not programmable controls. So:
There is no native feature to force a slicer to auto-select a value based on another slicer.
Workarounds (Best Practices)
Create a measure that simulates default behavior when nothing is selected:
Selected Level2 =
VAR SelectedL1 = SELECTEDVALUE(Table[Level 1])
VAR SelectedL2 = SELECTEDVALUE(Table[Level 2])
RETURN
IF(
ISBLANK(SelectedL2),
SWITCH(
SelectedL1,
"Type1", "Type_A",
"Type2", "Type_E",
BLANK()
),
SelectedL2
)
Use this measure in visuals instead of directly relying on slicer selection.
2. Sync Slicers + Bookmarks Trick
You can create a pseudo-default behavior:
Limitation: This is manual UX control, not dynamic logic.
3. Pre-filter Using a Flag Column
Add a column like:
DefaultFlag =
IF(
(Table[Level 1] = "Type1" && Table[Level 2] = "Type_A") ||
(Table[Level 1] = "Type2" && Table[Level 2] = "Type_E"),
1,
0
)
Then:
Note :
If you're expecting behavior like:
“When I click Type2 → automatically select Type_E”
That’s not how Power BI slicers are designed. They don’t support:
Hope this helps.
Thanks!
Step 1) Set up the first bookmark
Select Type1 in the Level 1 slicer and select Type_A in the Level 2 slicer. Go to View → Bookmarks → Add and name it "Type1 Default".
Step 2) Set up the second bookmark
Select Type2 in the Level 1 slicer and select Type_E in the Level 2 slicer. Add another bookmark and name it "Type2 Default".
For both bookmarks make sure Data is checked and Display is unchecked in the bookmark options so only the slicer state is captured, not visual visibility.
Step 3) Use bookmark navigator
Instead of using a slicer visual for "Level 1" use a bookmark navigator that would help you to seleck each bookmark you have created.
Hi,
Glad to know you found our solution helpful.
If this helped you, can you please mark our solution as accepted so that next time if someone else face same situation as yours then they can find our solution helpful too
Thanks!
Hi @想要多多的赚钱
Glad to hear your issue is resolved!
If any of the responses helped, please consider marking it as a solution so it can benefit others facing a similar issue.
Feel free to reach out if you need anything further.
Step 1) Set up the first bookmark
Select Type1 in the Level 1 slicer and select Type_A in the Level 2 slicer. Go to View → Bookmarks → Add and name it "Type1 Default".
Step 2) Set up the second bookmark
Select Type2 in the Level 1 slicer and select Type_E in the Level 2 slicer. Add another bookmark and name it "Type2 Default".
For both bookmarks make sure Data is checked and Display is unchecked in the bookmark options so only the slicer state is captured, not visual visibility.
Step 3) Use bookmark navigator
Instead of using a slicer visual for "Level 1" use a bookmark navigator that would help you to seleck each bookmark you have created.
Thanks for your help!
Hi,
As per our understanding, what you’re trying to achieve (dynamic default selection in a dependent slicer based on another slicer) is not supported out-of-the-box in Microsoft Power BI.
Why it’s not working
Power BI slicers are user-driven filters, not programmable controls. So:
There is no native feature to force a slicer to auto-select a value based on another slicer.
Workarounds (Best Practices)
Create a measure that simulates default behavior when nothing is selected:
Selected Level2 =
VAR SelectedL1 = SELECTEDVALUE(Table[Level 1])
VAR SelectedL2 = SELECTEDVALUE(Table[Level 2])
RETURN
IF(
ISBLANK(SelectedL2),
SWITCH(
SelectedL1,
"Type1", "Type_A",
"Type2", "Type_E",
BLANK()
),
SelectedL2
)
Use this measure in visuals instead of directly relying on slicer selection.
2. Sync Slicers + Bookmarks Trick
You can create a pseudo-default behavior:
Limitation: This is manual UX control, not dynamic logic.
3. Pre-filter Using a Flag Column
Add a column like:
DefaultFlag =
IF(
(Table[Level 1] = "Type1" && Table[Level 2] = "Type_A") ||
(Table[Level 1] = "Type2" && Table[Level 2] = "Type_E"),
1,
0
)
Then:
Note :
If you're expecting behavior like:
“When I click Type2 → automatically select Type_E”
That’s not how Power BI slicers are designed. They don’t support:
Hope this helps.
Thanks!
Your reply is very helpful, thank you!
Hi @想要多多的赚钱
Glad to hear your issue is resolved!
If any of the responses helped, please consider marking it as a solution so it can benefit others facing a similar issue.
Feel free to reach out if you need anything further.
OK OK
OK OK
Hi,
Glad to know you found our solution helpful.
If this helped you, can you please mark our solution as accepted so that next time if someone else face same situation as yours then they can find our solution helpful too
Thanks!
OK OK
Hi @想要多多的赚钱
That isn’t currently possible with native slicers. They retain the current selection, so switching to a different Level 1 category won’t automatically update the Level 2 selection to a value under that category, and the Level 2 slicer would need to be cleared manually. If the additional features of the button slicer aren’t needed, the Chiclet Slicer can be used instead.
Can you tell me how you set it up?
Hi @想要多多的赚钱 ,
I have tried replicating your scnario and this behavior isn’t achievable through slicers alone, but you can implement it effectively using bookmarks.
Here’s how you can set it up:
Step 1:
Go to Edit Interactions and ensure the Level 1 button slicer is not being filtered by the Level 2 slicer (disable the interaction if needed).
Step 2:
Select Type1 in Level 1 and ensure the corresponding default (e.g., Type_A) is selected in Level 2.
Create a bookmark (e.g., Type1_Default) with the current state.
Step 3:
Select Type2 in Level 1 and set the Level 2 slicer to the desired default (e.g., Type_E).
Create another bookmark (e.g., Type2_Default).
Step 4:
Assign these bookmarks to buttons (or your existing button slicers) so that:
This approach allows you to simulate dynamic default selections for Level 2 based on Level 1.
I am unable to attach my pbix file here for this solution - not able to see any option to attach my file.
Hope above answers will help though!
Please mark this answer as accepted if it resolves your issue. Kudos are appreciated! 🙂
Your reply is very helpful, thank you!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 24 | |
| 23 |