Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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 (1)
1 Reply
QFabian
Specialist III
Specialist III

Hi @QlikEnthusiast1 , o couple of ideas :

WHERE

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

 

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

QFabian