Forum Discussion
Anonymous
8 years agoNot applicable
ALL function not working with report filter
Hi I have a measure: Measure =
CALCULATE(
DISTINCTCOUNT('Employee - date'[Empl_nr]);
ALL('Calendar'[Date]);
FILTER('Employee - date'; 'Employee - date'[DateID] = "Leave dat...
- Anonymous8 years ago
The solution was to remove the filter function in the measure.
CALCULATE( DISTINCTCOUNT('Employee - date'[Empl_nr]); ALL('Calendar'[Date]); 'Employee - date'[DateID] = "Leave date"; 'Employee - date'[Date] < TODAY() && 'Employee - date'[Date] <> BLANK() )
Anonymous
8 years agoNot applicable
The solution was to remove the filter function in the measure.
CALCULATE(
DISTINCTCOUNT('Employee - date'[Empl_nr]);
ALL('Calendar'[Date]);
'Employee - date'[DateID] = "Leave date";
'Employee - date'[Date] < TODAY() && 'Employee - date'[Date] <> BLANK() )kanielwang
7 years agoRegular Visitor
This is works. But why? what's the reason behind it?