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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How To......

Hi All,

Is this possible in Qlikview's Load Script

WHERE Customer_Number IN

(SELECT yy.Customer_ID FROM surfacefee_staging_table WHERE Trucker='EXPLORER')

??

by the way i'm loading excel files...

thanks!



1 Reply
Not applicable
Author

in qlikview you must pre load your sub-query into a table, then use the where EXISTS. The you can drop your subquery table.

Something like...>

tempExplorer:
LOAD Customer_ID;
SELECT Customer_ID from surfacefee_staging_table where Trucker='Explorer';

LOAD * from Excel WHERE EXISTS(Customer_ID,Customer_ID);

DROP TABLE tempExplorer;