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

Need help in QVD's

  Hi,

  

       I have one application and it  is creating QVD's daily and these QVD's am using in another application in the script i have to write something like if qvds crated today then exute the script else exit the script. How can we implement this.

Regards,

Anil

4 Replies
Anonymous
Not applicable
Author

There's a function called QVDCreateTime() that you can use to check when a QVD file was last created

Not applicable
Author

Hi Johannes,

                 Thnx for replay and could please elaborate the answer how to use this function, if you have any example please share it.

Anonymous
Not applicable
Author

Sure,

let vReloadedToday = if(Today() = Floor(QvdCreateTime('C:\MyDir\MyFile.qvd')), 1, 0);

This sets the vReloadedToday variable to 1 if the target QVD was reloaded today.

Not applicable
Author

Thnx Johannes got some idea now i will try to implement...