Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
stharani
Regular Visitor

Filter Multiple Table Columns and Metrics by date with One Slicer

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?

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

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

yingyinr_0-1648788681914.png

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

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

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

yingyinr_0-1648788681914.png

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

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.