Forum Discussion
Measure PreviousDay on Filter
- 3 years ago
Hi amfc
To achieve your goals you can add a Flag column, that returns 1 if it previous date:DayBeforeToday = if('Table'[Day]=TODAY()-1,1,0)From that point, if you need all pages to be filtered by the previous day , put it as a page-level filter
Or if it is relevant only for 1 measure use it as a filter in Dax formula:
Productivity on previous day = CALCULATE(sum('Table'[Productivity]), 'Table'[DayBeforeToday]=1)If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi amfc
To achieve your goals you can add a Flag column, that returns 1 if it previous date:
From that point, if you need all pages to be filtered by the previous day , put it as a page-level filter
Or if it is relevant only for 1 measure use it as a filter in Dax formula:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly