Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
md_qlikview
Creator II
Creator II

Set Expression - For Rolling Quarters

Hello Everyone,

I want to write set expression wherein I have to calculate total amount for Four rolling quarters, starting with the current quarter and the values should not be affected by the selection of the quarters or years on the dashboard.

I have tried below expression, by which I am getting correct values, but when I select Quarter from the filters on the dashboard the value changes with respect to the selection, which is wrong.

((Sum({<QuarterYear=,Year=,

CloseDate = {">=$(=Quarterstart(min(Date)))<=$(=QuarterEnd(min(Date),3))"}>} Amount))

Please guide me to get the required output.

Thanks in advance.

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try this, put all your date related fields in the set analysis like below

((Sum({<QuarterYear=,Year=, Quarter=, Month=,

CloseDate = {">=$(=Quarterstart(date(today())))<=$(=QuarterEnd(date(today()),3))"}>} Amount))

View solution in original post

8 Replies
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this for last 6 quarters, based on your requirement change the number in QuarterStart().

Sum({<QuarterYear=,Year=,

CloseDate = {">=$(=Quarterstart(max(Date), -5))<=$(=QuarterEnd(Max(Date)))"}>} Amount)

Hope this helps you.

Regards,

Jagan.

preminqlik
Specialist II
Specialist II

hi try this

((Sum({<Quarter=,Date=,QuarterYear=,Year=,

CloseDate = {">=$(=Quarterstart(min(Date)))<=$(=QuarterEnd(min(Date),3))"}>} Amount))

md_qlikview
Creator II
Creator II
Author

Hi jagan,

appreciated. When i use this expression, values still varies based on selection of quarters.

But i have try below expression and now the values are freeze and correct too.

What is your thought on this.

((Sum({<QuarterYear=,Year=,

CloseDate = {">=$(=Quarterstart(date(today())))<=$(=QuarterEnd(date(today()),3))"}>} Amount))

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try this, put all your date related fields in the set analysis like below

((Sum({<QuarterYear=,Year=, Quarter=, Month=,

CloseDate = {">=$(=Quarterstart(date(today())))<=$(=QuarterEnd(date(today()),3))"}>} Amount))

linusblomberg
Creator II
Creator II

Look into using AsOfTables. Search for it in this forum, there is tons of information about it.

md_qlikview
Creator II
Creator II
Author

thanks premkumar for your reply..

i did the same way i wrote earlier to jagan mohan and its working

thnks much

md_qlikview
Creator II
Creator II
Author

thanks linus for your reply

md_qlikview
Creator II
Creator II
Author

yes...this is the one

thanks much