Forum Discussion
Measure PreviousDay on Filter
Hi Team,
I have the @easure PreviousDay = TODAY()-1
And when i try to apply this measure on the filter of the page is not possible...
My goal is to present the value of previous day on a card. When the automactily update run, the PreviousDay measure is updated and the card also.. How can i do it?
| Day | Productivity |
| 21/05/2023 | 6 |
| 22/05/2023 | 5 |
| 23/05/2023 | 6 |
| 24/05/2023 | 1 |
Thanks
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
3 Replies
- amfcFrequent Visitor
That is perfect.. Thank you for your help
- Ritaf1983Super User
I was happy to help😊
- Ritaf1983Super User
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