Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Avg, Above, etc...

Hi,

I have data in a table as:

   

iddateunits
12017062
22017063
32017064
42017075
52017076
62017077
72017078
82017089
92017082
102017083
112017084
122017085
132017086
142017107
152017108
162017109
1720171010
1820171111
1920171112
2020171113
212017124
222017125
232017126

I would need to develop a line graph by Date and as a measure I should calculate the average of units as follows:

  • I just need data for the last four months (201711, 201710,201709, 201708). Notice that 201709 has no data but I need to show it in the graph.
  • The value of the month before the current month (month n-1) will be the average of "Units" of the previous 3 months
  • The value of the previous month (month n-2), will be the average of "Units" between n-4 and n-1
  • The value of the previous month (month n-3), will be the average of "Units" between n-5 and n-1
  • The value of the previous month (month n-4), will be the average of "Units" between n-6 and n-1

So, the following table indicates the rows included in each calculation:

     

iddateunitsavg 201711 (n-1)avg 201710 (n-2)avg 201709 (n-3)avg 201708 (n-4)
12017062 2
22017063 3
32017064 4
42017075 55
52017076 66
62017077 77
72017078 88
82017089 999
92017082 222
102017083 333
112017084 444
122017085 555
132017086 666
1420171077777
1520171088888
1620171099999
172017101010101010
182017111111111111
192017111212121212
202017111313131313
212017124
222017125
232017126

And the results woul be:

 

DateAvg
2017086,7
2017097,35294118
2017107,61538462
20171110

I tried something with the function "Above" and "RangeAvg" but its not working fine.

Any clue to solve this issue?

Thanks in advance

1 Reply
sunny_talwar

Try this

Table:

LOAD id,

Date(Date#(date, 'YYYYMM'), 'YYYYMM') as date,

units;

LOAD * INLINE [

    id, date, units

    1, 201706, 2

    2, 201706, 3

    3, 201706, 4

    4, 201707, 5

    5, 201707, 6

    6, 201707, 7

    7, 201707, 8

    8, 201708, 9

    9, 201708, 2

    10, 201708, 3

    11, 201708, 4

    12, 201708, 5

    13, 201708, 6

    14, 201710, 7

    15, 201710, 8

    16, 201710, 9

    17, 201710, 10

    18, 201711, 11

    19, 201711, 12

    20, 201711, 13

    21, 201712, 4

    22, 201712, 5

    23, 201712, 6

];


Max:

LOAD Max(date) as MaxDate

Resident Table;


LET vMaxDate = Peek('MaxDate');

DROP Table Max;


FOR i = 1 to 4


TRACE $(i);

LinkTable:

LOAD Date(AddMonths($(vMaxDate), - $(i)), 'YYYYMM') as NewDate,

Date(AddMonths($(vMaxDate), - IterNo()), 'YYYYMM') as date

AutoGenerate 1

While IterNo() <= 2 + $(i);


NEXT i

Dimension

NewDate

Expression

Avg(units)

Capture.PNG