Forum Discussion

joshcomputer1's avatar
9 years ago
Solved

Daily, Weekly, Month filter

I just need to know if this is possible before I start to build it.  I want to send the link out to a report to a customerand have an easy to use filter for daily, weekly, and monthly.  Once the user...
  • v-chuncz-msft's avatar
    9 years ago

    joshcomputer1,

     

    One way is to simply add calculated columns and separate slicers.

    isDaily =
    DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY ) < 30
    
    isWeekly =
    DATEDIFF ( Table1[date], MAX ( Table1[date] ), DAY )
        < 7 * 9