Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
i'm using this formula tu accumulate the values through the months
=Rangesum(before(sum(CapacityQty),0,ColumnNo(total)))
Of course this is accumulating regardless if the value of is positive or negative
There's a way to tweak the formula to accumulate only if the value is positive ? and avoid to accumulate the negative?
Thanks!
@qlikviewaf try below
=Rangesum(before(if(sum(CapacityQty)>0,sum(CapacityQty),0),0,ColumnNo(total)))
or
Rangesum(before(sum({<CapacityQty={">0"}>}CapacityQty),0,ColumnNo(total)))
Thank you!
What if i would like to carry over just positive values resulting from a sum of 4 different measure ?
So not just CapacityQty, but the result of CapacityQty+Stock+Backorder-OnHand ?
is something possible?
Thank you again!!
@qlikviewaf try below
=Rangesum(before(if(sum(CapacityQty)+sum(stock)+sum(backorder)>0,sum(CapacityQty)+sum(stock)+sum(backorder),0),0,ColumnNo(total)))
=RangeSum(Before(RangeMax(Sum(CapacityQty+Stock+Backorder+OnHand),0),0,ColumnNo(TOTAL)))
Hi Marco,
Let me rephrase the need.
I have Capacity , On hand , Backorder, Need, Saeftystock quantities.
Do you mind to help me in understanding what i'm missing? Thank you!