Forum Discussion
Ignoring a filter
the title doesn't really match the content - but if you want a visual to ignore a filter use 'Edit Interactions' under the format tab.
Apologies for not explaining myself better in the title.
I can't do it in "Edit interactions" since I will have other columns related to the selected year.
In this particular column I'll be using an AVERAGEX of the sales amount but I'll looking for to ignore the sales amount of the current year (or the 2009 year) as per the example attached.
The measure I'm working on on my real report is the following:
# Cases Forecast- =
VAR CasesNoCY =CALCULATE (
[# Cases];
FILTER (
Cases ;
NOT ( ( YEAR ( Cases[Date] ) ) = YEAR ( TODAY () ) )
)
)
RETURN
CALCULATE(AVERAGEX(VALUES('Date'[Date]);CasesNoCY); ALL('Date'[Calendar Year]))The issue is that since in that table I have other columns using data for the current year, I can't filter it out for the visual.
The reason I need to eliminate the current year is to avoid using the actual Nr of Cases on the past dates for the current year forecast.
I hope that it makes sense.