Forum Discussion
kt3734
3 years agoFrequent Visitor
filter
Hi, I run my dax query query returned the result with all the dates below. However, when I add the addition below to the query then then it keeps Executing the query for a long time then I have t...
- 3 years ago
Not sure as there is not enough detail, but we could modify your filter. What does the performance analyzer tell you?
Try this....
VAR dateMarker = TODAY()-15
CALCULATE( .........
FILTER ( ALL('Backlog'[InvDate]), 'Backlog'[InvDate] <= dateMarker )
)
BrianConnelly
3 years agoResolver III
Not sure as there is not enough detail, but we could modify your filter. What does the performance analyzer tell you?
Try this....
VAR dateMarker = TODAY()-15
CALCULATE( .........
FILTER ( ALL('Backlog'[InvDate]), 'Backlog'[InvDate] <= dateMarker )
)