Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Femke_DPG
Contributor III
Contributor III

How to show execution time QMC in Qlik dashboard?

Hi all

Is it possible to show the last execution time in QMC in Qlik dashboard? The reloadtime() function shows the latest reload in Qlik, but I need the latest reload in QMC.

 

For example: data was last reload on 15th of April in QMC, but the app in Qlik loaded today, I want to see 15/04/2022. Is there a way to do this?

 

Many thanks! Femke

Labels (2)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

in your dashboard reload script 

 

let vQvdReloadedTime = QvdCreateTime('path\someqvd.qvd');

 

Use the vQvdReloadedTime variable to show the qvd last refreshed date

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

3 Replies
vinieme12
Champion III
Champion III

you can store the qvd reload time in a variable 

https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/Scripting/FileFun...

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

in your dashboard reload script 

 

let vQvdReloadedTime = QvdCreateTime('path\someqvd.qvd');

 

Use the vQvdReloadedTime variable to show the qvd last refreshed date

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Femke_DPG
Contributor III
Contributor III
Author

Many Thanks Vinieme12! That works!