Discussion board where members can learn more about Qlik Sense App Development and Usage.
Hi guys,
I get different results using the same rangesum function in Qlikview versus QlikSense.
In Qlikview, even in the absence of data, the progressive value is reported in all rows, while in QlikSense this does not happen.
Obviously I am using the same data source (see attachments)
Do you have any ideas for achieving the same result in QlikSense as in QlikView?
my calculated item is
rangesum(above (sum(value),0,NoOfRows()))
Thanks
Raffaele
Hi, try this :
if(rowno()=0,sum(value),
rangesum(above (sum(value),0,NoOfRows())))
Hi Fabian, not Working...