Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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 )
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |