Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
kmmqlick
Contributor III
Contributor III

QlikSense MTD,YTD,QTD

In my sheet i have 3 filters Year, MonthYear(ex-:May-2020) and a drildown filter (Dialy,MTD,YTD,QTD) .

Dimensions are Customer , salesRep, Year, MonthYear, Date

Measure-Sales

I am taking a pivot table with Customer(Row left) and SalesRep(Col Top) i am calculating %Gain(Ratio of CY Sales,PY Sales-Based on selection)

when I select MonthYear ---ex-'May-2020' i want Ratio of  May-2020 sales to May-2019 sales. Please suggest expression for this.

Labels (2)
1 Solution

Accepted Solutions
GaryGiles
Specialist
Specialist

You have a lot going on here.  You can start by adding separate SalesYear and SalesMonth fields to your table in the load script to make it easier to use set analysis.  Then you could use the following expression in your pivot.  You will need to make adjustments based on what you want the pivot to present if no YearMonth is filtered or if multiple YearMonths are selected and how the Daily, MTD, YTD and QTD filters apply. 

 

=(sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date)))},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales) -

  sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date))-1)},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales)) /

  sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date))-1)},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales)

View solution in original post

1 Reply
GaryGiles
Specialist
Specialist

You have a lot going on here.  You can start by adding separate SalesYear and SalesMonth fields to your table in the load script to make it easier to use set analysis.  Then you could use the following expression in your pivot.  You will need to make adjustments based on what you want the pivot to present if no YearMonth is filtered or if multiple YearMonths are selected and how the Daily, MTD, YTD and QTD filters apply. 

 

=(sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date)))},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales) -

  sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date))-1)},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales)) /

  sum({$<MonthYear=,SalesYear={$(=max({$} Year(Date))-1)},SalesMonth={$(=Concat(Distinct SalesMonth,','))}>} Sales)