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.
I have three "unrelated" columns with similar data.
Clothing Style 1 (for example, value is: Skirt)
Clothing Style 2 (for example, value is: Top)
Clothing Style 3 (for example, value is: Pants)
How do I use Slicer that shows me values from all of above three fields/columns? (Heirarchy Slicer does not suit my need)
Any calculated column or measure that can be combined with Slicer?
Alternatively (if using Slicer is not possible),
Or any other filter that can list all values from three different fields/columns in a dropdown?
Thank you in advance for your support.
Solved! Go to Solution.
Hi @Anonymous ,
You may create a slicer table.
slicer =
DISTINCT (
UNION (
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 1] ),
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 2] ),
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 3] )
)
)
I don't see any value in your sample data. What's your expected out put?
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
i workaround this by unpivoting columns (Clothing Style 1, Clothing Style 2, Clothing Style 3) and using resulting Value for Slicer.
Hi @Anonymous ,
You may create a slicer table.
slicer =
DISTINCT (
UNION (
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 1] ),
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 2] ),
SELECTCOLUMNS ( 'Table', "style", 'Table'[Clothing Style 3] )
)
)
I don't see any value in your sample data. What's your expected out put?
Best Regards,
Jay
Community Support Team _ Jay Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous , in case you want in one slicer that Hierarchical slicer from feb release id better option (which seems like not a choice)
You can combine value in a single slicer put putting different filter would be a challenge
In case you need control value in different slicer you can use this option
I do not need control value in different slicer.
Slicer allows only one Field. However I need to add three unrelated Fields (all three Fields from same Table) to one Slicer. Is there a way to achieve it?
Table
Customer | Clothing Style 1 | Clothing Style 2 | Clothing Style 3 |
Rachel | Pants | Blouse | Scarf |
Samantha | Cocktail Dress | ||
Carol | Jeans | Top |
Slicer: Clothing Style
All
Pants
Blouse
Scarf
Cocktail Dress
Jeans
Top
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
70 | |
43 | |
31 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |