I have a situation in my excel/powerpivot dashboard in which I want to calculate value for a revenue funnel for: Same Month Last Year.
To do so the ParallelPeriod function works perfect for me, however, the results only show when I have marked this year as well as last year in my Year slicer.
eg: To calculate value for the dashboard for April, I need to do the comparison for the same period last year as well.
April 2015 vs April 2014:
SAME MONTH Last Year:=CALCULATE(sum([Rev. wgt (k$)]),PARALLELPERIOD(DimDate[Date],-12,MONTH))
and then I compare with this month:
This Month vs Same Month LY:=((sum([Rev. wgt (k$)])- ([SAME MONTH Last Year])) / [SAME MONTH Last Year])
To Calculate April 2014, I use the ParallelPeriod function. But to have the value in the dashboard, I have no other option but to select multiple year combination in the year slicer to get results. (See image, pls)
I want to avoid using the Year slicer and want that slicer only to have current year (2015) selected for result. I do not want 2014 to be marked as it changes some of my other views which are yearly focused.
Therefore, is their any way I can use only months or any other formula to show the result for "Same Month Last Year" without marking the previous year (2014) in the year slicer? I want avoid using the target year slicer to return value.
Any suggestions, guidance would be highly appreciated.