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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
Clever_Anjos
Support
Support

Yes, you just wrote it

where not [Salary]<50000

View solution in original post

2 Replies
Clever_Anjos
Support
Support

Yes, you just wrote it

where not [Salary]<50000

tresB
Champion III
Champion III

May be like:

Load    

          Field1,

          Field2,

          Salary

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