Forum Discussion
Anonymous
6 years agoNot applicable
sum value over slice
Hi community, I need calculate a measure with sum the column "Value" over the date filtered, if the Flag = B. I will use this measure in a table vision. For exemplify, I will use this datas: ...
lbendlin
Super User
6 years agosomething like this:
var f = selectedvalue(flag)
return calculate (sum(value),filter(allselected(),f="B"))