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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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