Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi to everyone, I created in Qlik Front-end a straight table like the one attached.
My aim is to obtain the result in column E and so the cumulative sum of column C.
But for now I only managed to obtain the result in column D thanks to this expression:
sum(AGGR(RangeSum(above( COUNT({SetAnalysis} %KEY_INT),0,RowNo())),N))
I have problems to deal with null values...
Thanks in advance
Eva
Would you be able to share a qvw sample to take a look at this?
Can this work to you? i am thinking
sum(AGGR(RangeSum(above( COUNT({<%KEY_INT = {'=Len(%KEY_INT) > 0'}>} %KEY_INT),0,RowNo())),N))
My Bad, It should Double Quote
sum(AGGR(RangeSum(above( COUNT({<%KEY_INT = {"=Len(%KEY_INT) > 0"}>} %KEY_INT),0,RowNo())),N))
Hi Sunny, for me it's not possible to share qvw just beacause it's a reserved huge project. I tried to make a smaller example and in that case all seems to work fine.. I am starting to thik that there's a problem in the star schema...
not working for me
Atleast can you show the image? Where you are getting null values?
For me the problem is that I forced to display all N in dataset in the straight table even though N° Claims is not
valorized for the specific subset of data taking into account.
May be enabling the option "Suppress when value is null"? Because, Without seeing application it may difficult to think.
No beacause I have to display all N also if value is null.
if N° Claims is null I want to display the same comulative sum of the previous not null row.
May be this?
Sum(Aggr(If(IsNull([N° Claims]), [N° Claims], sum(AGGR(RangeSum(above( COUNT(%KEY_INT),0,RowNo())),N))), [Delta gg], N))