Forum Discussion
Dynamically filter measure based on slicer value
- 3 years ago
For the measure which needs to ignore 2 of the slicers you can use REMOVEFILTERS to ignore filters on the particular table or column used in the slicers.
Slicers only affect the page that they are on. If you need a slicer to affect multiple pages you will need to duplicate the slicer on each page, make sure that it is set to sync. You can set it to hidden so that it doesn't affect the pages visually.
Once you have that set up, I don't think you would need the FILTER function in your code.
- csaethre193 years agoHelper II
That is what I was doing before. However, I have two measures that need to be used in a visual. One of which needs to be affected by 6 of the 8 slicers I have. The other measure needs to be affected by all 8 slicers. Does that make more sense?
- johnt753 years agoSuper User
For the measure which needs to ignore 2 of the slicers you can use REMOVEFILTERS to ignore filters on the particular table or column used in the slicers.
- csaethre193 years agoHelper II
Thank you this works for me!