Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
how to put below condition in set analysis
thanks in advance
if(sum({<Bucket = {'1 YR'}>}VMKUM) > sum(STOCK1), sum(STOCK1),sum({<Bucket = {'1 YR'}>}VMKUM))
How about this?
RangeMin(Sum(STOCK1), Sum({<Bucket = {'1 YR'}>}VMKUM))
That if statement can't be transformed into a set analysis expression. It has two branches that each calculate a result.
Agree with gwassenaar since it has branch statement we need to use If condition
How about this?
RangeMin(Sum(STOCK1), Sum({<Bucket = {'1 YR'}>}VMKUM))
getting same output as if condition.. thanks
It does, its just another way to avoid the if statement in your case