Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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.