Forum Discussion
Anonymous
3 years agoNot applicable
How to get sum by certain row
Morning all, I already try to do below measure to get the result but it was not accurate when it come to 1 single day have more than 1 usage measure. Actual Data Day Abnormality Value ...
amitchandak
Super User
3 years agoAnonymous , I think the below measure should work, unless you have some specific need
Sum('For Graph'[UsageMeasure])
or
calculate(Sum('For Graph'[UsageMeasure]), filter(allselected(Table), Table[Abnormality] = max(Table[Abnormality]) && Table[Day] = Max(Table[Day]) ) )