Forum Discussion

dsabsi's avatar
dsabsi
Icon for Advocate I rankAdvocate I
8 years ago
Solved

How do you show your data except for the last 6 weeks?

Hello everyone,    I need your help with my Power BI dashboard.  I have plotted a bunch of data regarding the revenues per customer and I have added year + week filters (DIM_DATE).    I want to ...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    8 years ago

    Hi dsabsi,

     

    How about this? All the [FilterColumn] = 1 is the data you want.

     

    FilterColumn =
    IF ( [Date] <= TODAY () - 42, 1, 0 )

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    Best Regards!

    Dale