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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
brijesh1991
Partner - Specialist
Partner - Specialist

Not Exist issue

Hi All,

I have two two tables. First table contains 30 IDs, second Table contains 100 IDs. I don't want those 30 IDs in my Dashboard.

So I use Not Exist function. Will you suggest is there any wrong with it?

My script demo:

Table1:

Load ID from Table1;

Table2:

Load ID from Table2 where not exist(ID);

drop table Table1;

Labels (1)
1 Solution

Accepted Solutions
luciancotea
Specialist
Specialist

This works:

Table1:

LOAD * INLINE [

    ID_BAD

    1

    2

    3

];

Table2:

LOAD * INLINE [

    ID

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

]

where not exists(ID_BAD, ID);

drop table Table1;

The result will be the numbers from 4 to 10.

View solution in original post

5 Replies
luciancotea
Specialist
Specialist

Table1:

Load ID as ID_BAD from Table1;

Table2:

Load ID from Table2 where not exist(ID_BAD, ID);

drop table Table1;

brijesh1991
Partner - Specialist
Partner - Specialist
Author

Hi Cotea,

Thanks. . . Not exists not working.. It's giving me 100 IDs only.

luciancotea
Specialist
Specialist

This works:

Table1:

LOAD * INLINE [

    ID_BAD

    1

    2

    3

];

Table2:

LOAD * INLINE [

    ID

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

]

where not exists(ID_BAD, ID);

drop table Table1;

The result will be the numbers from 4 to 10.

sujeetsingh
Master III
Master III

can also write as

where ID<>null()

brijesh1991
Partner - Specialist
Partner - Specialist
Author

Thanks Lucian Kotea... It worked....

When I was taking tables directly, it wasn't working.... then I take resident of the same and both tables need to force 'noconcate', then it's working fine...

Your answer is absolutely correct!

Thanks Brother!