Forum Discussion
davidcray75
3 years agoFrequent Visitor
Filter between effective dates
Hello, Should I expect slow query response times when filtering an imported table with a dynamically selected date where it falls between row effective start and end dates? The link below contains a...
lbendlin
3 years agoSuper User
The Italians have some great videos on how to refactor queries to reduce cardinality. Apply filters first that have the biggest impact, then apply the other filters sequentially.
Instead of FILTER() try using CALCULATETABLE() . Use DAX Studio to watch for the number of records in each query plan.
davidcray75
3 years agoFrequent Visitor
Thanks for the reply. I've been enjoying their videos already...feels like I've tried it all!