Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Where condition from another table column

Hi,

Please help in the below scenario:

Load A1,A2,A3 from A

I want to load B in such a manner -

Load B1,B2,B3 from B where B1 = A1

I tried the above way but it is showing A1 column not found.

Please help how to achieve the above.

Thanks,

Girish Inani

1 Reply
sunny_talwar

May be use Where Exist here:

LOAD A1,

          A2,

          A3

FROM A;

LOAD B1,

          B2,

          B3

FROM B

Where Exists(A1, B1);