Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVDS

Hi

If I hv on QVW tht generates multiple QVDs from from i/p excels.+

Then I hv another QVW tht generates dashboard using these QVDs

bt i dont hv any publisher or schedular

then how can i come to knw tht those QVDs were generated and ready to reload.

Regards

Avadhoot

1 Reply
Not applicable
Author

Hi Avadhoot,

You can use the function FileTime() to check the last modification date of a qvd, for example:

let vcheck = Floor(FileTime('path\file.qvd')); //returns null if qvd doesn't exist

if not IsNull($(vcheck)) then

     if $(vcheck) < num(Today()) then

          //qvd not updated

     else

          //qvd updated

     endif

else

     //qvd not created

endif

Hope this will help you.