Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear All,
When applying a filter I want the result to always show one value, as well as the selected option.
The fields are as below:
0
1
2
3
I want the filter to only show options 1, 2 & 3.
When a user selects 1, 2 or 3 I want all items connected with value 0 to also remain in the visualized results.
Is there a way I can obtain this result?
Thank you
gianmarco
Solved! Go to Solution.
Hi @gianmarco ,
Based on your description, I have created a simple sample:
Please try:
First add a new table for slicer:
For Slicer =
var _a = FILTER(SUMMARIZE('Table',[Column1]),[Column1]<>0)
var _b = CROSSJOIN({0},_a)
var _c = ADDCOLUMNS(_a,"Value",[Column1])
return UNION(_b,_c)
Output:
Then create a relationship between the two tables:
Create a slicer:
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @gianmarco ,
Based on your description, I have created a simple sample:
Please try:
First add a new table for slicer:
For Slicer =
var _a = FILTER(SUMMARIZE('Table',[Column1]),[Column1]<>0)
var _b = CROSSJOIN({0},_a)
var _c = ADDCOLUMNS(_a,"Value",[Column1])
return UNION(_b,_c)
Output:
Then create a relationship between the two tables:
Create a slicer:
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
84 | |
82 | |
66 | |
52 | |
46 |
User | Count |
---|---|
100 | |
48 | |
42 | |
39 | |
38 |