Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
jacek27031
Contributor III
Contributor III

Load between dates

Hi, what is wrong with this code? 

jacek27031_0-1640607813586.png

LOAD
"Buyer ID",
"%Customer ID",
Product,
"%Product ID",
%Date Where [%Date]>Date('10/1/2021') and [%Date]<Date('12/31/2021'),
Quantity,
"Seller Market",
"Type Of Sale"
FROM [lib://bms3_emea_root_folder/qvd_facts/f_channel_stiso_actual.qvd]
(qvd)
Where Match("Seller Market", 'GERMANY');

 

2 Solutions

Accepted Solutions
Or
MVP
MVP

There's a "Where" in the middle of your Load which shouldn't be there. If this is a condition, it should be at the bottom with the rest of the conditions.

View solution in original post

Or
MVP
MVP

Where Conditions1

And Condition2

And Condition3

etc.

View solution in original post

3 Replies
Or
MVP
MVP

There's a "Where" in the middle of your Load which shouldn't be there. If this is a condition, it should be at the bottom with the rest of the conditions.

jacek27031
Contributor III
Contributor III
Author

Thank you @Or , and how to add two conditions?

Or
MVP
MVP

Where Conditions1

And Condition2

And Condition3

etc.