Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
rmuhammad
Creator
Creator

how? calculating % by dividing total for year by avg of totals from past months same fy year

how do i achieve this? I need to  calculate % by dividing total for year by avg of totals from past months same fy year

avg.PNG

sample data file attached

1 Solution

Accepted Solutions
felipedl
Partner - Specialist III
Partner - Specialist III

I guess you're missing the point of set analysis, if you combine both expression into one, it gets the same result, I just assumed you needed to see both values independently, but you can get only one expression with the two I put on the graph, giving the following:

Sample.png

Set analysis let's you get a specific selection of data, even though there's a different selection made by the user.

Felipel.

View solution in original post

3 Replies
felipedl
Partner - Specialist III
Partner - Specialist III

Hi Rashid,

Both can be achieved through set analysis, being:

Column B (gets the max period and snapperiod or selected by user):

sum({<period={"$(=max(period))"},snapperiod={"$(=max(snapperiod))"}>}rate)

Column C (gets the year interval to max snapperiod or selected snapperiod:

avg({<snapperiod={">=$(=Yearstart(max(snapperiod)))<=$(=max(snapperiod))"}>}rate)

and Column 😧

// It only gets the previous stated expressions and does the percentage

Column(1)/Column(2)

Attachedt he file you provided with teh "New Graph" table, wich holds the above expression.

Felipe.

rmuhammad
Creator
Creator
Author

this works when columns are calculated separately, what if I have one expression in the pivot table and   different partial sum sort of like

Year | Color | STatus> Active | Inactive | Status Total | Year total

now in this I want to divide Status total /Year Total

felipedl
Partner - Specialist III
Partner - Specialist III

I guess you're missing the point of set analysis, if you combine both expression into one, it gets the same result, I just assumed you needed to see both values independently, but you can get only one expression with the two I put on the graph, giving the following:

Sample.png

Set analysis let's you get a specific selection of data, even though there's a different selection made by the user.

Felipel.