Forum Discussion
bo_afk
Post Patron
6 years agoMeasure with calculate before date not working
I've created a measure to calculate another measure only for dates before a particular date. i.e. CALCULATE( [measure] , [date] < 01/09/2019) But my result is coming up as blank. Can someone te...
- 6 years ago
Hi bo_afk ,
CALCULATE needs two kinds of parameter: Expression and Filter. So you need a table range to get a filter.
So you could try the following DAX:
Measure = CALCULATE ( [measure], FILTER ( 'Table', [date] < DATE ( 2019, 1, 9 ) ) )
v-eachen-msft
Community Support
6 years agoHi bo_afk ,
CALCULATE needs two kinds of parameter: Expression and Filter. So you need a table range to get a filter.
So you could try the following DAX:
Measure =
CALCULATE ( [measure], FILTER ( 'Table', [date] < DATE ( 2019, 1, 9 ) ) )
- bo_afk6 years ago
Post Patron
Thanks v-eachen-msft. This looks to have done the trick!