Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts - For the attached chart.. i need to have 3 buttons.. say "0%-10%" ; "11%-20%",">20%"... When i click the "0%-10%" button... %'s belonging to those shuld reflect in my chart (chk attached qvw).. like wise for other buttons as well..
Try with old expression and see the result.
oh ok Got it!! It changes the % ..
Using this methods you are selecting the dimensions value which will affect the other charts as well, if this is the requirement then you can go by this approach, but if you you don't want to affect the other charts by clicking on buttons then you need to change the expression as this approach won't work
Can we use the Alternate state to avoid this ?
Then anyway you need to change the expressions , right? why to make things complicated using alternate states, if you have many charts then you need to change expression in each and every chart for alternate states. Using my approach you need to change the expression of that particular chart only.
You can use the same mechanism with a calculated dimension - I just don't think it's the right way to go about it. You'll have to check the "Suppress when value is null" box.
=if(aggr(sum(Amt)/sum(Total Amt),Aging_Bucket1)>0.1,Aging_Bucket1)
Replacing the condition with variable-based conditions as in my previous example.
Hi Kushal - In the above approach... In my case Dimension is Cyclic Drilldown... So is it possible to those kind of dimension as well ?
You'll have to replace every mention of AgingBucket1 with GetCurrentField(YourGroup). It should work, I think, regardless of which of these approaches you used.
No problem, you can use same expression. If aggr is needed for your expression then, you can do something like below
=sum( aggr(YourExpression, $(vCyclicGroup)) )
where , vCyclicGroup = GetCurrentField([YourClyclicGroupName])
Cool... Just curious to know if my case is going to be like this...
Assume, i have Cyclic Drilldown (2 Fields) as my Dimension... but i need this behavior for only one field (1st field) not for the 2nd Field in Cyclic Drilldown.. How do we deal with that?