Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to display just txt message when a specific cyclical group is selected from the chart.
But, the others from the cyclical group should still be displayed upon selection.
How should i go about this? Thank you in advance.
Hi ,
try this "=if(GrpCust="Skills",0,sum(Calls))"
Hi,
Use the GetCurrentField() statement, like so:
=GetCurrentField(GrpCust)
This will get the current cyclic group field value and so you can make an if statement to get the appropriate message you want.
you can apply a condition in your chart using the GetCurrentField() as suggested by Felip.
Then you can use custom error message to display the text you want to show when the Group is "Skills"
Please find the attached qvw.
What I want to know is if you do not want to show data in chart when the specific Field in a Group is selected then why do you want to add that Field in the Group itself.
This group is being used in other charts in a container that's why it needs to be included in the cyclical group. I'll go ahead and try what you suggested. Thanks.