Forum Discussion
Stop Page Level Filter From Applying to One Visual
- 8 years ago
we're not understanding;
my suggestion is to establish the value at the table level. this will rerun at each data refresh.
for instance if you create a new calculated table - that is the Sum of X. that stand alone figure/value, put into a visual, will not be affected by filtering of other visuals on the same page.
CahabaData That wouldn't work for me.
Using an example, I would like to whole page to be filtered by today's date but I would like this one chart to show data from the beginning of time to today's date.
Does that make sense?
Hi skylarw
Instead of using one Page Level filter ....
Why don't you several identical filters (today's date) at the visual level (the same for all the graph) and one different for the visual you don't want the impact with beginning of time to today's date ?
Saludos,
Vicente
- skylarw8 years agoFrequent Visitor
vcastello Since this is not a one time report but one that I will be currently updating.
Every time I publish the report the page level filter is going to be to a different date so to change every visual every time is going to be time consuming.
- CahabaData8 years agoMemorable Member
we're not understanding;
my suggestion is to establish the value at the table level. this will rerun at each data refresh.
for instance if you create a new calculated table - that is the Sum of X. that stand alone figure/value, put into a visual, will not be affected by filtering of other visuals on the same page.
- kymramosrpo5 years agoAdvocate V
Hi! I'm also a noob when it comes to Power BI.
Have you tried using the 'Edit Interactions' in 'Format'? I tried playing around with it today and it gave me what I want - to exclude one of the visuals from getting affected by the date filters in the report.
Here are the steps I took:
1. Click on one of your visual filters. This will activate 'Format' in the menu.
2. Click on 'Edit Interactions'. This will activate the two sub-icons in each visual - one is a graph icon ("filter"), the other a cancelled icon ("none").
3. Click on the cancelled icon on the visual you want to exclude. Do this for all the visual filters, so that none of them will affect the visual you want excluded.
For example, I have visual filters for Year, Month, and Date. I don't want these impacting the one visual (a card) on achievement %. I just clicked on each of the visual filters and made sure that I clicked on the cancelled icon on the visual for achievement %.
I hope this helps!
- vcastello8 years agoResolver III
Hi skylarw
If you have a calendar table you can
1.- Create a new calculated column called IsToday ...
IsToday = IF([Date] = TODAY(), 1, 0)
Being [Date] the date column in your calendar table
2.- Filter all the Today's visuals by IsToday and set it to 1
Should that work?
Vicente