Forum Discussion
Anonymous
6 years agoNot applicable
Don't Filter Measure
Hello, I have measures that should not be filtered ie they have no date range in the table and should only change when the data is updated. Another table used has dates so we need to have a date ...
v-kelly-msft
6 years agoCommunity Support
Hi Anonymous ,
You can use function all or allselected to make the measure not be filtered.
Such as calculate(sum(table[Value]),all(Date)) OR calculate(sum(table[Value]),allselected('table'))
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!