Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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 All,
I have one table report with one Dimension and Field parameter with two measure. By default table visual displays values for both the measure in the filter context of dimension which works fine. Now my requirement is that, I want to show table visual blank unless filter selection is made in the slicer(another dimension). Is it possible to do this? I tried with calculation group as well but doesn't work.
Solved! Go to Solution.
Hi @rob_vander2
You can refer to the following solution.
Sample data
I create the following measure paramaters.
Measure = MAX('Table'[Test1])
Measure 2 = SUM('Table'[Test2])
And i have a filter table, if it is filtered, then display the measure paramaters, or it will be blank.
We can create a measure.
Measure 3 = IF(ISFILTERED('Table (2)'[IsFilter]),1,0)
Then create a visual and put the measure3 to the visual filter.
Outptut
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @rob_vander2
You can refer to the following solution.
Sample data
I create the following measure paramaters.
Measure = MAX('Table'[Test1])
Measure 2 = SUM('Table'[Test2])
And i have a filter table, if it is filtered, then display the measure paramaters, or it will be blank.
We can create a measure.
Measure 3 = IF(ISFILTERED('Table (2)'[IsFilter]),1,0)
Then create a visual and put the measure3 to the visual filter.
Outptut
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |