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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
samantha75
Frequent Visitor

add alternative date filters for week , month

Hi All

Is there a way to add multiple date filters such as date range, month, week in separate slicer or drop downs and when a user selects one it clears other filters and shows the data filtered by the last selected filter? For example, first the user select a week - say week 41 and data is now filtered to week 41. Then the user selects a different filter for the month and selects July 2022 , now only show data for July 2022 and clear the week filter. Essentially having multiple OPTIONS to filter date-based data.

Thanks

1 REPLY 1
amitchandak
Super User
Super User

@samantha75 , You have create a table joined to you date table which basically an unpivoted version and use that

 

union(

selectcolumns(Date, "Date", [Date], "Period", "Week", "Value", [Week No], "Sort", [Week Sort]),
selectcolumns(Date, "Date", [Date], "Period", "Month", "Value", [Month Year], "Sort", [Month Sort])
)

 

Join the with date , force Many to Many and filter direction from this table to date table. 

 

then use this table in the slicer, If needed make a hierarchical slicer

 

Approach is very similar to

Power BI - Show Grand total row or Avg Grand total row in Visual: https://youtu.be/OSwRZ4GUhxc

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.