Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ruma_barman
Creator
Creator

Showing the number of quarters according to input given by user

Hi All,

I have a chart having fiscal quarter as dimension and sum of sales as measure. The fiscal quarter values are sorted like this

Q1 2016,Q2 2016,Q3 2016,Q4 2016,Q1 2017,....so on till Q1 2018. Now we need to show the number of quarters as given input by user.If he enters 4 ,we need to show the last four quarters Q2 2017,Q3 2017,Q4 2017,Q1 2018 and so on.How to achieve this?

1 Reply
petter
Partner - Champion III
Partner - Champion III

If you create a field in your data model called QuartersAgo you can simply use that field like this:

     Sum( {<QuartersAgo={"<4"}>} Sales )   

You would have to use this set expression in all your measures in a chart. You can still use the dimension that shows QuarterYear for display purposes since it would be associated with the QuartersAgo in the same table.