Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I want the below report in QlikSense
the upto total section is adding the current and before value in the column and I have achieved some part of it. I somehow managed to add the previous into current but the first value appears null and addition starts from second and also i am not able to convert the null values into zeroes. can anyone tell me how to do that. below is my attached screenshot
thanks in advance
My expression is
IF($(eSalesPartyWiseYTD)>0,($(eSalesPartyWiseYTD)+BEFORE($(eSalesPartyWiseYTD))),
IF(ISNULL(BEFORE($(eSalesPartyWiseYTD))) OR BEFORE($(eSalesPartyWiseYTD))='-',$(eSalesPartyWiseYTD))
Look into Rangesum function. I believe it would ignore nulls and sum up the numbers.
No it didn't work...