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: 
Not applicable

Conditionally Show Field Using "Presentation" in Chart Properties

I'm using a group as a dimension with Store and ItemID as group components. I want a field ItemDescription to show only when the ItemID value for the cyclic group is selected, otherwise hidden. How should I do this?

1 Solution

Accepted Solutions
Not applicable
Author

GetCurrentField(GroupName) = 'ItemID'


GetCurrentField should return the selected item. With that in the conditional of the field, it should only show when ItemID is selected. Replace GroupName with whatever you named the Group.

View solution in original post

2 Replies
Not applicable
Author

GetCurrentField(GroupName) = 'ItemID'


GetCurrentField should return the selected item. With that in the conditional of the field, it should only show when ItemID is selected. Replace GroupName with whatever you named the Group.

Not applicable
Author

Thank you that works great.