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.
I have a huge dataset out of which using below 3 columns I want to use in a slicer. This is a samp-le "Data Dable" excluding other tables.
Q1 | Q2 | Q3 |
2 | 1 | 5 |
4 | 6 | 4 |
6 | 1 | 2 |
7 | 2 | 7 |
1 | 1 | 6 |
2 | 5 | 3 |
1 | 5 | 2 |
6 | 4 | 1 |
7 | 6 | 3 |
4 | 3 | 5 |
I have another table where I have labels to map to this data "Label Table"
Option | Label |
1 | A |
2 | B |
3 | C |
4 | D |
5 | E |
6 | F |
7 | G |
8 | H |
9 | I |
10 | J |
I want to create a slicer where I want to display the labels from Label table and it should filter all data from "Data Table" but it should refer to all all 3 columns Q1, Q2 & Q3 while filtering a value. eg. If we select "G" in slicer it should filter basis 7 in Q1 & Q2 & Q3 and show all the values from the data related to this.
Solved! Go to Solution.
Hi, @AishwaryaP_
Try this:
Measure = IF(
MAX('Data Table'[Q1]) in VALUES('Label table'[Option])||MAX('Data Table'[Q2]) in VALUES('Label table'[Option])||MAX('Data Table'[Q3]) in VALUES('Label table'[Option]),1,0)
Show items when the measure is 1 in filter pane.
Result:
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @AishwaryaP_
Try this:
Measure = IF(
MAX('Data Table'[Q1]) in VALUES('Label table'[Option])||MAX('Data Table'[Q2]) in VALUES('Label table'[Option])||MAX('Data Table'[Q3]) in VALUES('Label table'[Option]),1,0)
Show items when the measure is 1 in filter pane.
Result:
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try this solution:
https://community.powerbi.com/t5/Desktop/Once-Slicer-for-multiple-columns/m-p/430979#M198545
Proud to be a Super User!
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 |
---|---|
72 | |
68 | |
53 | |
39 | |
33 |
User | Count |
---|---|
70 | |
63 | |
57 | |
49 | |
46 |