Forum Discussion
Anonymous
5 years agoNot applicable
Creating Measurement between fixed Date and calculated Date
'm interested in creating a report comparing a before and after of two equivalent time periods. The after period is looking at the days from a fixed date (1/10/20) to the most recent case in the ...
- 5 years ago
Anonymous , You can create measure like this and try
Rolling -92 = CALCULATE(countrows(date_table),DATESINPERIOD('Date'[Date ],date(2020,10,01),-92,Day))
Rolling 92 = CALCULATE(countrows(date_table),DATESINPERIOD('Date'[Date ],date(2020,10,01),92,Day))
amitchandak
Super User
5 years agoAnonymous , You can create measure like this and try
Rolling -92 = CALCULATE(countrows(date_table),DATESINPERIOD('Date'[Date ],date(2020,10,01),-92,Day))
Rolling 92 = CALCULATE(countrows(date_table),DATESINPERIOD('Date'[Date ],date(2020,10,01),92,Day))