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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
KatMaciejewska
New Member

multiple column filter in one slicer/drop down

Hi Everyone!
I am currently working on one project and I would like to create a table, which could be prefiltered by a user by a column with values selected by this user, like in the attached example:

KatMaciejewska_0-1659945856506.png

So let's say, I have a columns in the table which are Publisher, Ad Group Name, Impressions, Clicks, CTR, etc and I would like to have a drop down list at the top of this table where I could pick a column by which I would like to prefilter the table results, for e.g. I would like to filter a table by column called "Conversions", where the value is higher than 1200, or filter the table out by column "Impressions", where the value is less than 2000.
Would thi be possible at all? To have a one filter with many columns as a selection of a filter?

Hope my explanation makes sense! Thank you in advance. 

1 ACCEPTED SOLUTION
RicoZhou2
Resolver I
Resolver I

Hi @KatMaciejewska ,

 

I suggest you to create a measure to filter your visual.

Measure = 
VAR _Conersions = 
CALCULATE(SUM('Table'[Conversions]))
VAR _Impression = 
CALCULATE(SUM('Table'[Impressions]))
RETURN
IF(OR(_Conersions>1200,_Impression<2000),1,0)

Add this measure into visual level filter in your table visual and set it to show items when value equal to 1.

My Sample:

RicoZhou2_0-1660122891472.png

Result is as below.

RicoZhou2_1-1660122910632.png

 

Best Regards.

 

View solution in original post

1 REPLY 1
RicoZhou2
Resolver I
Resolver I

Hi @KatMaciejewska ,

 

I suggest you to create a measure to filter your visual.

Measure = 
VAR _Conersions = 
CALCULATE(SUM('Table'[Conversions]))
VAR _Impression = 
CALCULATE(SUM('Table'[Impressions]))
RETURN
IF(OR(_Conersions>1200,_Impression<2000),1,0)

Add this measure into visual level filter in your table visual and set it to show items when value equal to 1.

My Sample:

RicoZhou2_0-1660122891472.png

Result is as below.

RicoZhou2_1-1660122910632.png

 

Best Regards.

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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