Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Task Reload scenario in Script

Hi All,

 

I want to reload the QVD on a particular day once in a Day.. Suppose if i have run the QVD and stored the data into QVD than it should not be updated in the same Day.

 

Regards

Abhay

Labels (1)
1 Reply
Mauritz_SA
Partner - Specialist
Partner - Specialist

Hi Abhay

You can put your reload in an IF statement. Something like this should work:

IF Day(Filetime('Path/QVDName.qvd')) <> Day(Today(1)) Then

<Reload script here>

End If

Regards,

Mauritz