Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
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:
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.
Solved! Go to Solution.
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:
Result is as below.
Best Regards.
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:
Result is as below.
Best Regards.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
8 | |
7 | |
3 | |
2 | |
2 |
User | Count |
---|---|
6 | |
5 | |
4 | |
4 | |
4 |