Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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
https://www.youtube.com/watch?v=cyOquvfhzNM
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
121 | |
79 | |
48 | |
38 | |
31 |
User | Count |
---|---|
192 | |
79 | |
70 | |
50 | |
42 |