The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |