Skip to main content
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