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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Anonymous
Not applicable

Filter that selects multiple filters

Hi everyone,

 

I am trying to create a filter/slicer that is single select and when selected, selects 1 or more filters

 

Scenario Filter

1

2

3

4

 

So when 1 is selected it only filters 1, when 2 is selected, it filters 1 and 2, when 3 is selected it filters 1,2 and 3, and when 4 is selected, 1,2,3 and 4

 

Is there an easy way to do it?

1 ACCEPTED SOLUTION

Hi, @Anonymous 

 

Please check the below, and kindly advise whether it suits your case.

 

Picture16.png

 

Value Total =
VAR selectedslicer =
SELECTEDVALUE ( Slicer[Scenario], MAX ( Slicer[Scenario] ) )
VAR newtable =
FILTER (
SUMMARIZE ( Data, Data[Company], Data[Scenario], "@value", SUM ( Data[Total] ) ),
Data[Scenario] <= selectedslicer
)
RETURN
SUMX ( newtable, [@value] )
 
 
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: https://www.linkedin.com/in/jihwankim1975/


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi, @Anonymous 

I do not know how your actual data model looks like, but a separate slicer table is needed.

And you can write a measure something like below.

The sample pbix file's link is down below.

 

Picture14.png

 

 

Product show =
VAR selectedslicer =
SELECTEDVALUE ( Slicer[Category], MAX ( Slicer[Category] ) )
RETURN
IF (
SELECTEDVALUE ( Data[Category] ) <= selectedslicer,
SELECTEDVALUE ( Data[Product] ),
BLANK ()
)

 

https://www.dropbox.com/s/b7fra4lhnjx1cdb/rm66.pbix?dl=0 

 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.
Anonymous
Not applicable

My table looks like this:

 

Rm666652_0-1619172972182.png

 

So when 4 is selected, I want to select 1-4, makes sense?

Hi, @Anonymous 

 

Please check the below, and kindly advise whether it suits your case.

 

Picture16.png

 

Value Total =
VAR selectedslicer =
SELECTEDVALUE ( Slicer[Scenario], MAX ( Slicer[Scenario] ) )
VAR newtable =
FILTER (
SUMMARIZE ( Data, Data[Company], Data[Scenario], "@value", SUM ( Data[Total] ) ),
Data[Scenario] <= selectedslicer
)
RETURN
SUMX ( newtable, [@value] )
 
 
 
 

Hi, My name is Jihwan Kim.


If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.


Linkedin: https://www.linkedin.com/in/jihwankim1975/


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors