Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have created a summary dashboard using multiple columns from different table. Now I have to add a slicer to that page so that I can filter all columns by Year, Month, or by Quarter.
How can I make one slicer to filter all the columns from different table?
Solved! Go to Solution.
Hi @stharani ,
Please review the following links and check whether they are what you want. Hope they can help you.
1. Create a hierarchy slicer
Add multiple fields to a hierarchy slicer
Power bi slicer multiple columns with examples
2. Union multiple columns as slicer options
Creating a slicer that filters multiple columns in Power BI
Slicer =
DISTINCT (
UNION (
SELECTCOLUMNS (
Customer,
"Selection", Customer[State],
"StateCountry", Customer[StateCountry]
),
SELECTCOLUMNS (
Customer,
"Selection", Customer[CountryRegion],
"StateCountry", Customer[StateCountry]
),
SELECTCOLUMNS (
Customer,
"Selection", Customer[Continent],
"StateCountry", Customer[StateCountry]
)
)
)
Best Regards
Hi @stharani ,
Please review the following links and check whether they are what you want. Hope they can help you.
1. Create a hierarchy slicer
Add multiple fields to a hierarchy slicer
Power bi slicer multiple columns with examples
2. Union multiple columns as slicer options
Creating a slicer that filters multiple columns in Power BI
Slicer =
DISTINCT (
UNION (
SELECTCOLUMNS (
Customer,
"Selection", Customer[State],
"StateCountry", Customer[StateCountry]
),
SELECTCOLUMNS (
Customer,
"Selection", Customer[CountryRegion],
"StateCountry", Customer[StateCountry]
),
SELECTCOLUMNS (
Customer,
"Selection", Customer[Continent],
"StateCountry", Customer[StateCountry]
)
)
)
Best Regards
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
42 | |
4 | |
4 | |
3 | |
3 |