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 dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |