Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
suryaa30
Creator II
Creator II

Exclude Data using not equal to in Qlikview Script

I have a field Code with numbers

Code

1563

1523

1600

1612

1456

I need to exclude records while loading in qlikview script that have value greater than or equal to 1600. what need to be written in where condition.

Code

1563

1523

1456

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

You mean less than 1600? Your question says greater than or equal to?

May be this?

LOAD * INLINE [

Code

1563

1523

1600

1612

1456

] Where Code < 1600;

View solution in original post

3 Replies
vishsaggi
Champion III
Champion III

You mean less than 1600? Your question says greater than or equal to?

May be this?

LOAD * INLINE [

Code

1563

1523

1600

1612

1456

] Where Code < 1600;

suryaa30
Creator II
Creator II
Author

Thanks Vishwarath

vishsaggi
Champion III
Champion III

Did it work? Can you close  the thread if it answered your question.