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

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
QlikEnthusiast1
Contributor
Contributor

Data filtering

I have a case where I need to filter the 'Status' column in my data to exclude the 'Cancelled' status. I used the formula WHERE Trim(Status) <> 'Cancelled', but it did not work. How can I resolve this problem?

Labels (2)
2 Replies
QFabian
MVP
MVP

Hi @QlikEnthusiast1 , o couple of ideas :

WHERE

      Trim(upper(Status)) <> 'CANCELLED';

 

Where
      not match(UPPER(Status), 'OPEN', 'CLOSED', 'ETC');

Greetings!! Fabián Quezada (QFabian)
did it work for you? give like and mark the solution as accepted.
QlikEnthusiast1
Contributor
Contributor
Author

okay, thanks