Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hide lines - line chart

Can I hide lines (using the Conditional option) within a line chart based on the selections a user chooses?  For example, re the below pic... if the user selects 'Access and Inclusion' and 'Sensory' for example, I'd like these two only to appear.  If it is possible, can someone advise as to the conditional expression?  Many thanks.Capture.PNG

Labels (1)
1 Solution

Accepted Solutions
Clever_Anjos
Support
Support

Maybe

=index(concat([WorkType]),'Access and Inclusion') > 0 or index(concat([WorkType]),'Sensory') > 0

View solution in original post

5 Replies
Clever_Anjos
Support
Support

Maybe:

=index([WorkType],'Access and Inclusion') > 0 or index([WorkType],'Sensory') > 0

Not applicable
Author

That works but appears to be only partly what I'm after, but thanks so much for that

I'd like the line chart to initially show all of the Work Types until the user decides they want to see specific ones alongside each other.  Using the expression you've given me will display the work types where only one is selected but doesn't work if more than one is selected, which is ideally what I'd like it to do.

Thanks.

Clever_Anjos
Support
Support

Would you mind sharing a sample of your app?

Preparing examples for Upload - Reduction and Data Scrambling

Clever_Anjos
Support
Support

Maybe

=index(concat([WorkType]),'Access and Inclusion') > 0 or index(concat([WorkType]),'Sensory') > 0

Not applicable
Author

Exactly what I'm after... thanks so much