Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
tsoley9262
Contributor III
Contributor III

Where Statement in load scripts

I am using this where statement in my load scripts to exclude any AD Decommission from my data but when I use this statement "where Disposition <> 'AD Decommission';" it is also excluding any blank fields to which I don't want to happen.

3 Replies
Claudiu_Anghelescu
Specialist
Specialist

WHERE Not Match (Disposition, 'AD Decommission')
To help community find solutions, please don't forget to mark as correct.
tsoley9262
Contributor III
Contributor III
Author

I am getting a error saying Match is not a recognized built in function name

marcus_sommer

In general your statement should work. Maybe it's a special feature from your database-driver. If your load isn't too heavy you could transfer the where-clause to a preceeding load and there you could also use the qlik-functions like the suggested match(). This means the following:

load * where not match (Disposition, 'AD Decommission');
sql select * from table;

- Marcus