Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how to implement below scenario in qlikview
time | sal | cumulative sum | required output | |
period 1 | 100 | 100 | 100 | |
period 2 | 10 | 110 | 210 | |
period 3 | 20 | 130 | 340 | |
period 4 | 100 | 230 | 340 |
if i select period 1 o/p=100
period 2 o/p=210(100+110)
period 3 o/p=340(100+110+130)
Regards
............
Check this app
What is period 4 required output? 340 or 570?
period 4 o/p=570
Perhaps like this:
Data:
LOAD *, rangesum(cumsal, peek(req_out)) as req_out;
LOAD
time,
sal,
rangesum(sal,peek(cumsal)) as cumsal
FROM ...
Hi Ananth,
Where you want to achieve this scenario (which object) ??
Check this app
Thanks Gysbert,
in source i have only 2 columns(time,sal) ,remaining columns how to implement in qlikview report level( in text object)
Hi @anbu
this is working fine in table level ,same thing how to implement in text object .
Check this app
Thanks @anbu cheliyan
its working perfectly .............