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: ...
mahoneypat
Microsoft Employee
6 years agoPlease try this measure expression
Total B Flags =
CALCULATE (
SUM ( 'Table'[Value] ),
ALLSELECTED ( 'Table' ),
'Table'[Flag] = "B"
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat