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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
jmcdermott
Contributor III
Contributor III

I am new to Qlikview and am trying to exclude some values in a Where clause in the load statement

The clause I am using is below

Where

left(Customer_Type,1) <> 5 or

left (Customer_Number,1) <> 'S';

S999981 is still showing up in the Customer_Number field

What am I doing wrong?

Thanks,

Josh

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

May be try like:

Where

NOT MATCH(Left(Customer_Type,1), 5, 'S');

View solution in original post

3 Replies
vishsaggi
Champion III
Champion III

May be try like:

Where

NOT MATCH(Left(Customer_Type,1), 5, 'S');

jmcdermott
Contributor III
Contributor III
Author

Thanks Vishwarath that worked.

vishsaggi
Champion III
Champion III

Glad. Close the thread accordingly.