Forum Discussion
Anonymous
7 years agoNot applicable
Filter Table based on Slicer Selection
Hi, I've got a table that I want to filter based on what a Slicer selection returns. The context is that I have a slicer table that looks like this: MIN VIEWS 100 150 200 ...
- 7 years ago
Anonymous add measure as below and in table visual, drop product and this new measure, you will have solution
Views Total = VAR __selectedValue = SELECTEDVALUE( Table2[MinViews] ) RETURN CALCULATE( SUM( Table3[Views] ), Table3[Views] >= __selectedValue )