Forum Discussion
Including a date filter within a measure
- 5 years ago
Hi, Anonymous
Change the date as you need, like this
from September = CALCULATE( [myMeasure], FILTER( 'Table', 'Table'[Date]>=DATE(2020,9,1)&&'Table'[Date]<=TODAY() ) )result:
If this doesn't work for you, then please consdier sharing more details about it or a simple sample file without any sesentive information so that i may work out with a workaround.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hey Anonymous ,
you can set the filter in your table to September:
September Values =
CALCULATE(
[myMeasure],
MONTH( DateTable[Date] ) = 9
)
Or if the measure should only return values if the filter context is September then use the FILTER function:
September Values =
CALCULATE(
[myMeasure],
FILTER(
DateTable,
MONTH( DateTable[Date] ) = 9
)
)
Thanks for response. I believe you are right and this is what I'm looking for, however I need values from September until today. How would I write "since 9.2020", not just = 9. Thanks!