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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 to stop it. Can you tell me why?- Thanks
FILTER ( 'Backlog','Backlog'[InvDate] <=TODAY()-15)
Result before adding the filter above.
Solved! Go to Solution.
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 )
)
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 )
)