Forum Discussion
lasthero
9 years agoFrequent Visitor
Removing Page level filter for just 1 visualization
Is there anyway to remove the page level filter for just 1 visualization? For example I have a card visualization that displays the count for November of data i am working with. The whole page h...
Anonymous
6 years agoNot applicable
Hi lasthero,
You can try measurements on these visuals that cancel the filtering done by page or report-level filters, like so:
ID_all = CALCULATE(DISTINCTCOUNTNOBLANK(Table[ID]),ALL(page_filter),ALL(report_filter))
So all the other visuals can use the Table[ID] column, for those that you want to remove filtering, you can use ID_all.
Please mark as solved if you find it useful.
Best,
Leo
alienlin
5 years agoFrequent Visitor
Thanks, this code works! 🙂 🙂
ID_all = CALCULATE(DISTINCTCOUNTNOBLANK(Table[ID]),ALL(page_filter),ALL(report_filter))