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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Left Join & Left Keep in same Load statement

Hi All,

I have one more question. Can I have a Left Join & Left Keep in the same Load statement.

Eg.

Left Keep (ABC)

Left Join (XYZ)

Load

  E, F, G

From OPQ.QVD(qvd);

2 Replies
hic
Former Employee
Former Employee

No. You will need a "Where Exists()" instead, e.g.

Left Join (XYZ)

Load

  E, F, G

From OPQ.QVD(qvd)

     Where Exists(E);

HIC

Not applicable
Author

The Exists Works seamlessly ... I was just curious if Keep & Join will work or not as it does not throw a syntax error ...

Thanks !!!