Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Where filter from colA in table B

hi all,

i need to use filter in TableA for col1 from TableB. Means whatever the items is there in col1 tableB only those items should not appear in TableA. Please advise, thanks

TableA:

col1,

col2,

col3

from A

TableB:

col1,

col12,

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Sorry, I am unable attach a file . please use below code

Table:

LOAD * INLINE [

    T1, T2, T3

    Apple, 10, 3

    Mango, 30, 6

    Orange, 56, 2

    Grape, 23, 7

    Kiwi, 65, 3

];

Table1:

LOAD * INLINE [

    A1, A2, A3

    Orange, 56, 2

    Kiwi, 65, 3

];

test:

Load  * ,1 as Demo   Resident Table where not Exists(A1,T1);

drop Tables Table,Table1;

View solution in original post

5 Replies
Anonymous
Not applicable
Author

Hi Srividhya,

Please share sample data and expected output.

Anonymous
Not applicable
Author

Hi Mahesh

i have attached the sample in abv. plz refer. thanks

Anonymous
Not applicable
Author

Hi Srividhya,

Please find the attachment. Hope it helps you.

Anonymous
Not applicable
Author

Sorry, I am unable attach a file . please use below code

Table:

LOAD * INLINE [

    T1, T2, T3

    Apple, 10, 3

    Mango, 30, 6

    Orange, 56, 2

    Grape, 23, 7

    Kiwi, 65, 3

];

Table1:

LOAD * INLINE [

    A1, A2, A3

    Orange, 56, 2

    Kiwi, 65, 3

];

test:

Load  * ,1 as Demo   Resident Table where not Exists(A1,T1);

drop Tables Table,Table1;

Anonymous
Not applicable
Author

Check the attachment