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

Avg

Hi,

In my application i'm trying to take an average from a calculated value (relative number of orders in the week). For this i'm trying to use the following expression:

=avg(aggr(Sum(Order)/Sum(TOTAL Order),Store))

Which will aggregate the percentage of orders in the week by the store and take the average from this values. But it's not working, could somebody help me?

On the attachment i've made and example of what i need (The average of the percentage from each day of the week on each week of the month of both stores). Doing it by hand it shold be showing 63% (fisrt store, monday of the first week) + 55% (Second store, monday, first week) /2 = 59%.

I appreciate the help.

Thanks!

4 Replies
Anonymous
Not applicable
Author

How about an expression something like :

     sum ( Order ) / sum ( TOTAL Order )

MK_QSL
MVP
MVP

=avg(TOTAL aggr(Sum(Order)/Sum(TOTAL Order),Store))

Not applicable
Author

Could you do an example for me? I tried but it didn't work.

Anonymous
Not applicable
Author

Try this:

=(

Sum({<Store={1}>}Order)/Sum({<Store={1}>}TOTAL Order) + Sum({<Store={2}>}Order)/Sum({<Store={2}>}TOTAL Order))/GetPossibleCount(Day

)

KR