Forum Discussion

nataliesmiy1357's avatar
1 year ago
Solved

Custom Filter - DAX

Hello!  I am looking to create a date filter/measure/column with this criteria

Past 3 months data ( June 2024 - Today)

Past 6 months data ( March 2024 - Today)

Past 12 months data ( September 2024 - Today)

All data (January 2019 - Today)

 

Thanks in advance!

2 Replies

  • Hi nataliesmiy1357 

     

    one easy way that I recommend is to write a calculated column in your Dim_Date which can be written as follows:

     

    Column =
    var tday= today() return
    calculate(DISTINCTCOUNT('Table'[month]), filter ('Table', 'Table'[month] >= EARLIER('Table'[month]) && 'Table'[date]<=tday))
     
    If this post helps, then I would appreciate a thumbs up and mark it as the solution to help the other members find it more quickly.