Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello!
I have one app which I do all my calcs in expressions (aggr for instance), and based on some conditions, I'm color coding with red, blue and green. So far, so good.
Now, the client wants to make a filter - so select results which are in red, blue or green.
As those conditions are a result from an aggr, how can I create a filter without changing anything on my script?
Is there any way?
Thank you! 🙂
Hi
I guess you have a color mesure lookink like this :
if(Mymesure>0,Green(),red())
Right ?
Then add a filter object and this kind of mesure
aggr(
if(Mymesure>0, ' Group OK', ' Group KO') , your dimension for Calls targeted )
Hi
I guess you have a color mesure lookink like this :
if(Mymesure>0,Green(),red())
Right ?
Then add a filter object and this kind of mesure
aggr(
if(Mymesure>0, ' Group OK', ' Group KO') , your dimension for Calls targeted )