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: 
siva_boggarapu
Creator II
Creator II

What is the alternate for 'Not in' in QlikView?

Hello,

Can any body tell me What is the alternate for 'Not in' in QlikView?

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi,


I'd use

Table:

LOAD *

FROM File.qvd (qvd)

WHERE Match(ID, 'A', 'B', 'C') = 0; // load records where ID is not A, B nor C

Hope that helps.

Miguel Angel Baeyens

BI Consultant

Comex Grupo Ibérica

View solution in original post

3 Replies
Miguel_Angel_Baeyens

Hi,


I'd use

Table:

LOAD *

FROM File.qvd (qvd)

WHERE Match(ID, 'A', 'B', 'C') = 0; // load records where ID is not A, B nor C

Hope that helps.

Miguel Angel Baeyens

BI Consultant

Comex Grupo Ibérica

siva_boggarapu
Creator II
Creator II
Author

Hello Miguel,

Thanks for giving right answer. Its really working for me.

Anonymous
Not applicable

thanks for the information