Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hello everyone,
I have a slicer that goes from -2 to 200.
I would like to filter the page visuals (table, charts, etc) , so if my slicer selection is under 10 i would like to filter/display only values where my flag = 1 and my task = 1.
Kind regards
Solved! Go to Solution.
Hi @Sandrine ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
Measure Filter =
var _selectedvalue=SELECTEDVALUE('Parameter'[Parameter])
return
IF(_selectedvalue<10&&_selectedvalue<>BLANK(), IF(SELECTEDVALUE('Table'[Flag])=1 && SELECTEDVALUE('Table'[Task])=1,1,0),1)
(3) The following illustration shows that the measure values are filtered.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sandrine ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a measure.
Measure Filter =
var _selectedvalue=SELECTEDVALUE('Parameter'[Parameter])
return
IF(_selectedvalue<10&&_selectedvalue<>BLANK(), IF(SELECTEDVALUE('Table'[Flag])=1 && SELECTEDVALUE('Table'[Task])=1,1,0),1)
(3) The following illustration shows that the measure values are filtered.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
87 | |
74 | |
69 | |
58 | |
55 |
User | Count |
---|---|
40 | |
38 | |
34 | |
32 | |
30 |