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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Incremental Load with year and Month

Hey guys,

I have a table in which year and month is available.. i need the script to pull the data of single month only rather than whole table which is time taking..

Can any one help me in this?

Labels (1)
3 Replies
marcus_sommer
MVP
MVP

You could with makedate(Year, Month) create a single field which you could use within an incremental approach. Here you will find (beside some other useful informations) various examples to this topic: Advanced topics for creating a qlik datamodel.

- Marcus

Anonymous
Not applicable

may be something like this?

Let Vmonth=month(Today());

Let Vyear=year(Today());

Load *

From Yourtable

where MonthField=$(Vmonth) and YearField=$(Vyear);

Not applicable