Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QVD Reload Time?

Hiya Guys,

I have a .qvw which is automatically reloaded via QMC on completion of its corresponding .qvd QlikMart.

If I display the "ReloadTime()" of the Dashboard (.qvw) then this is not a true reflection of how live the data is - as I may "reload" from the (static) .qvd during development.

Is there any way of bringing through, and displaying, the reload time (or creation date?) of an underlying QlikMart (.qvd) file into the frontend Dashboard (.qvw)?

Cheers,

Steve.

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Steve

You can read the QVD creation time when you load the QVD and store that in a variable to use in place of the reload time. Use:

   Let vReloadTime = QvdCreateTime( 'your QVD file.qvd');

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Steve

You can read the QVD creation time when you load the QVD and store that in a variable to use in place of the reload time. Use:

   Let vReloadTime = QvdCreateTime( 'your QVD file.qvd');

Hope that helps

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Yes, of course, thanks Jonathan!

Cheers,

Steve.