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: 
Not applicable

how to write a script for loading the data for 3 months in QV

how to write a script for loading the data for 3 months in QV

3 Replies
johnw
Champion III
Champion III

Perhaps this?

LOAD my fields
FROM my source
WHERE MyDate >= addmonths(today(),-3)

It's really hard to answer without more information.

Not applicable
Author

Hi,

Thank you john,my intenction is i want to load data into my qv application (i.e)last 3 months data from today.

Regards,

Bhaskar.

johnw
Champion III
Champion III

OK.  Then give my previous answer a try.