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: 
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'