Forum Discussion
devesqdeves
Helper II
2 years agoAggregate column values per Client Id in a matrix
Hello! I am having a hard time dealing with this problem, really hope that someone can help me out. -------------------------------------------------------------- Main goal is to be able to have a...
lbendlin
Super User
2 years agoYou are trying to use a measure as a table filter. You need to first add that measure to each row of the table (or to an aggregation) before you can filter on it.
devesqdeves
Helper II
2 years agolbendlin How so ?
- lbendlin2 years ago
Super User
FILTER( 'DW FCTEndOfYearEndings', [FilterDateHCFACCurrentDate] = 1 ... - devesqdeves2 years ago
Helper II
lbendlin But thats what i have in the measure ,
Measure_=CALCULATE(COUNTROWS('DW FCTEndOfYearEndings'),FILTER('DW FCTEndOfYearEndings',[FilterDateHCFACCurrentDate] = 1 &&NOT(CONTAINS('DW FCTEndOfYearEndings','DW FCTEndOfYearEndings'[CandidateId],CALCULATE(values('DW LeaveDayDim'[CandidateId]),FILTER('DW LeaveDayDim',[FilterDateLeavesCurrentDate]=1)))))).What should i do differently?