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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
nataliesmiy1357
Helper IV
Helper IV

Custom Date Slicer

Hello!  I am wanting to create a slicer/filter of a date.  I want to create an option of

1) Past 3 months

2) Past 6 months

3) Past 12 months

4) All Data

 

How do I go about doing this?  I wanted to do a relative date filter, but I do not want to show days and weeks.

 

Thanks in advance!

2 REPLIES 2
rajendraongole1
Super User
Super User

Hi @nataliesmiy1357 -Please create a calculated column in your date table as below:

Date Range Filter =
VAR TodayDate = TODAY()
VAR Past3Months = EDATE(TodayDate, -3)
VAR Past6Months = EDATE(TodayDate, -6)
VAR Past12Months = EDATE(TodayDate, -12)
RETURN
SWITCH(
    TRUE(),
    'Date'[Date] >= Past3Months, "Past 3 Months",
    'Date'[Date] >= Past6Months, "Past 6 Months",
    'Date'[Date] >= Past12Months, "Past 12 Months",
    "All Data"
)

 

rajendraongole1_0-1725985119574.png

rajendraongole1_1-1725985210852.png

 

 

Hope this helps

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





This is a great start!  But I need the Past6Months to include the Past3Months as well - how is that possible?

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors