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

QVD reload time in Qliksense

I'm trying to get the reload times for the QVDs in my Qliksense apps, but when I used the QVDReloadTime function, it returns <NULL>.  I am referencing the post below.

Re: QVD Reload Time?

Here's my script statement:

TestData:

Load

*

FROM [lib://QVDs (qlickserver_qliksense_service) (cpsb_coal.creek)/Tests_EOC.qvd] (qvd);

Let vReloadTimeTest = QvdCreateTime(Tests_EOC.qvd);

Do I need to specify the path in more detail?

Thank you in advance.

2 Replies
swuehl
MVP
MVP

Have you tried something like

Let vReloadTimeTest = QvdCreateTime('lib://QVDs (qlickserver_qliksense_service) (cpsb_coal.creek)/Tests_EOC.qvd');

its_anandrjs

Write your expression this way 'Tests_EOC.qvd' with single quotes open and close.

Let vReloadTimeTest = QvdCreateTime('Tests_EOC.qvd');