Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
= aggr(if(rank(avg([Metric Value]))<=6,Grouping),Year,[Cost Center])
I am creating a ranking system and the above equation resolves this.
However, there is one value in Grouping that I do not want in the equation called 'Cost'
= aggr(if(rank(avg([Metric Value]))<=6,Grouping='*@-'Cost'),Year,[Cost Center])
Obviously the 2nd equation is incorrect.
Anyone know how i would rewrite this to allow for Grouping to remove 'Cost'?
Thanks
Try with
aggr(if(rank(avg([Metric Value]))<=6,If(Grouping<>'Cost', Grouping, Null())),Year,[Cost Center])
Try with
aggr(if(rank(avg([Metric Value]))<=6,If(Grouping<>'Cost', Grouping, Null())),Year,[Cost Center])
= aggr(if(rank(avg([Metric Value]))<=6 and Grouping <> 'Cost',Grouping),Year,[Cost Center])
Thanks guys
Thanks guys