Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello,
I am trying to use a date filter within a measure. My measure needs to only return data from September 2020 or later. I cannot use a slicer as my measure is drawing data from multiple tables along with certain selection processes. Thanks.
Solved! Go to Solution.
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
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!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |