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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
bobbydave
Creator III
Creator III

Can you use multiple where clauses?

Original where clause

Load *

FROM
[$(vQVDPath)\E_Finance_Reports_Rep14.QVD] (
qvd)
where len(source_country_code)>0 
and ApplyMap('MapFordAgents', source_country_code &'-'& Agent)=1;
;



I want to further reduce the load with Dates greater than 2014


FROM
[$(vQVDPath)\E_Finance_Reports_Rep14.QVD] (
qvd)
where len(source_country_code)>0  and where Year(P
olicy_New_Business.AccountingPeriod) > '2014'


and ApplyMap('MapFordAgents', source_country_code &'-'& Agent)=1;
;

Can you add a 2nd where clause?

1 Solution

Accepted Solutions
Anonymous
Not applicable

No, you can only have one where clause per Load.

View solution in original post

3 Replies
Anonymous
Not applicable

No, you can only have one where clause per Load.

bobbydave
Creator III
Creator III
Author

Thanks for clarifying

Not applicable

Hello,

is there a turn around ?

can we have multiple load containing each 1 where clause ?

many thanks !