Forum Discussion
Measure Calculations??
- 3 years ago
Using ALLSELECTED will take it into consideration, at the level you specify in the function. Keep in mind ALLSELECTED is a complicated function and should be used carefully.
I suggest taking some time to read the following post to get a better understanding.
Euro0681 The page filter will pre-filter the context for the measure, so it will not be going through all 60,000 suppliers essentially, just whatever happens to be in the filter context at the time the measure calculates. If you don't want to sum the null values (not that it would impact the result, then you could do:
SUMX(FILTER('Table',[Value] <> BLANK(), [Value])
This will add additional filter context to whatever is being passed by the page filter, visual filters and any cross filtering going on between visuals.