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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Translate this line please

Hello,

I'm new to qlik and programming in general, I'm working on a dashboard that has previously been created by someone else. I need help understanding what this dimension means in order to continue with the changes i need to make to my chart

the dimension is:

=if(Status <> 'Closed', Status_Category)

Thanks in advance for your help!

1 Solution

Accepted Solutions
sunny_talwar

This just means that only show those Status_Category where Status is not equal to Closed.

View solution in original post

4 Replies
sunny_talwar

This just means that only show those Status_Category where Status is not equal to Closed.

Not applicable
Author

Thank you!

Not applicable
Author

so if i wanted Status to exclude the field "Closed: Approved" would I change it to,

=if(Status <> 'Closed', 'Closed: Approved', Status_Category)?

sunny_talwar

You can do it in few different ways

If(Match(Status, 'Closed', 'Closed: Approved') = 0, Status_Category)

or

If(not Match(Status, 'Closed', 'Closed: Approved'), Status_Category)

or

If(Status <> 'Closed' or Status <> 'Closed: Approved', Status_Category)

or

If(not WildMatch(Status, 'Closed*'), Status_Category)