Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
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
may be something like this?
Let Vmonth=month(Today());
Let Vyear=year(Today());
Load *
From Yourtable
where MonthField=$(Vmonth) and YearField=$(Vyear);