Forum Discussion
Cbutler
Helper III
3 years agoHelp with calculate DAX!
I am having a blank moment. I am trying to do a simple calculate but I can not seem to get my filters working correctly. How can I write a measure that shows, If school 1 is selected bring back th...
- 3 years ago
Thanks all! You helped me get to the right result!
Here is what I was trying to do :0)
Anonymous
3 years agoNot applicable
hello this works for me:
Filtered Sum =
CALCULATE (
SUM ( Table1[pupil numbers ] ),FILTER(ALL(Table1),Table1[Catchment ] = MAX(Table1[Catchment ] )
)
)