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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Where not + condition

Hi,

I know how to use a "where not match" condition, but is it possible to use the same kind of statement with a condition to exclude data from a loaded table?

Like: Where not ... ([Salary]<50000);

Thank you

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Yes, you just wrote it

where not [Salary]<50000

View solution in original post

2 Replies
Clever_Anjos
Employee
Employee

Yes, you just wrote it

where not [Salary]<50000

tresesco
MVP
MVP

May be like:

Load    

          Field1,

          Field2,

          Salary

Resident <tablename> Where Salary >=50000;  // equivalent to 'not Salary<50000'