Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
xarapre7
Creator II
Creator II

Display text message in a chart from cyclical group selection

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.

4 Replies
Anonymous
Not applicable

Hi ,

try this  "=if(GrpCust="Skills",0,sum(Calls))"

felipedl
Partner - Specialist III
Partner - Specialist III

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.

sudeepkm
Specialist III
Specialist III

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"

316257.PNG

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.

xarapre7
Creator II
Creator II
Author

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.