Forum Discussion
CLNersesian
Kudo Kingpin
10 years agoDAX formula optimization question
Hello all, I'm setting up some DAX measures to calculate the number of days late for delivered goods. The following formula is an example (I've expanded some of the terms to make it easier to un...
- 10 years ago
CLNersesian try without calculate
Measure = COUNTROWS ( FILTER ('Sales Transaction', 'Sales Transaction'[Late Delivery 45 Days]="Days Late (45+)" ) )
MattAllington
Community Champion
10 years agoHow big is your transaction table?
Why are you using ALL(Sales Transaction) ? This will slow the whole thing down - unless you have a reason for using ALL, just use the table instead