Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Filter dates as from previous ISO week (also valid when year change)

Hello, I have the following data in a table visualization in Power BI. I am trying to filter the rows based on the Date column. I am trying to filter all dates which are in the previous week and la...
  • grantsamborn's avatar
    grantsamborn
    4 years ago

    2 Comments

    1 - Your date dimension only goes up to the current date so showing future records would be tough.  Try extending it to the end of the current year or some other future date.

    2 - Since you already have [CurWeekOffset], the following column should work for you.

    Display = 'Calendar'[CurWeekOffset] >= -1
     
    I hope I understood you correctly.